Borrar filtros
Borrar filtros

Using for loops for a matrix

1 visualización (últimos 30 días)
Liz
Liz el 30 de Nov. de 2020
Respondida: Ameer Hamza el 30 de Nov. de 2020
The question is:
'Using a for loop, create as many figure windows as there are rows in the matrix and plot the numbers from each row in a seperate figure window.'
I have a matrix with four rows, how do I go about doing this?

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 30 de Nov. de 2020
Just use a for-loop. For example
M = rand(10, 40);
for i = 1:size(M,1)
figure();
plot(M(i,:));
end

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by