loop to extract rows and giving the vectors progresseiv numbers

1 次查看(过去 30 天)
Hello,
I have a matrix of size A= [70x1459], I need to extract every row i of it and putting it in a vector M_(i), so I can plot any of them with another vector B=[1x1459].
I wanted to use a loop to achieve that easily and quickly, like following to get M1,M2 etc...:
for i=1:70
M_(i)=DehnMatrix(i,:)
end
but it doesnt work, can anyone tell me what I'm messing.
thanks in advance.

采纳的回答

Voss
Voss 2022-8-6
There's no need to make each of several rows of a matrix into its own variable (M1, M2, etc.)
Instead just use indexing to get the rows you need when you need them
For example, to plot the first 25 rows of DehnMatrix:
DehnMatrix = rand(40,1459);
plot(DehnMatrix(1:25,:).')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by