How to name each row of a 4 by 4 matrix, that is calculated. Then plot those rows each in a separate figure?

1 Ansicht (letzte 30 Tage)
Hello everyone,
I have two parts to my question:
  1. I wanted to ask if as part of my calculations, I get an output of a 4 by 4 matrix, however I want to name each row in this matrix, how? I saw other answers on the community mentioning using tables from the beginning but I beleive I cant do that as the matrix is calculated.
  2. Also how can I plot each row in this matrix in a separate figure?
Thanks in advance!
  2 Kommentare
James Tursa
James Tursa am 17 Jul. 2019
Please post some code or pseudo-code (or combination thereof) showing what you are trying to do, and then we can give you some suggestions.
dpb
dpb am 18 Jul. 2019
Well, there's nothing to prevent casting the output matrix into table to use the RowNames property if that's what you want.
Whether it makes sense to use a table from the beginning depends largely on whether the data from which you start is suitable to a table or not. We have no way to judge w/ no info on the subject.
To plot, just create a loop and pass each row to plot(). Remember if do want a brand new figure to include the figure command in the loop to create a new one each pass...

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

KSSV
KSSV am 18 Jul. 2019
A = rand(4,4) ;
var = {'row1', 'row2','row3','row4'} ;
% Table
T = table(A, 'RowNames',var) ;
% Plot
for i = 1:4
figure(i)
plot(A(i,:))
end

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by