creating matrix with iteration
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Akmyrat
el 5 de Ag. de 2014
Comentada: Akmyrat
el 9 de Ag. de 2014
lets say I have this code: for i=1:4 sum=1+i end i want program to create a ix2 matrix (1st column values are 3) at each iteration. ex: at i=3 => A=[2 3;3 3;3 4] at i=4 => A=[2 3;3 3;3 4;3 5]
0 comentarios
Respuesta aceptada
Hikaru
el 5 de Ag. de 2014
Try this code, but you have to specify n for the number of rows.
A = zeros(n,2);
A(:,1) = 3;
for i=1:n
A(i,2) =1+i;
end
Más respuestas (1)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!