Get all the values from a two (for loop)
Mostrar comentarios más antiguos
I am running two for loops with means it run 5*5..
Later the size of x will be (1,5) however; the x runs more than that!!!
Can I obtain all the values of the x ...I mean all the values running even in matrix
clear all;
clc;
d=1:5;
for i=1:5
g=1:5;
for j=1:length(g)
x(:,i)=d(i)*2;
end
end
Respuesta aceptada
Más respuestas (1)
madhan ravi
el 9 de Jun. de 2020
Wanted = ones(numel(1:5),1).*((1:5)*2)
Categorías
Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!