How to save output in array

15 visualizaciones (últimos 30 días)
Emily
Emily el 31 de Mayo de 2022
Respondida: Voss el 31 de Mayo de 2022
Hi, I'm trying to create a loop that prints the output in an array and not sure how to save/print as I want.
num=5;
for k=1:num
a=k^2;
num=num+1;
end
output=[a(1), a(2), a(3), a(4), a(5)]

Respuesta aceptada

Voss
Voss el 31 de Mayo de 2022
Like this?
num = 5;
for k = 1:num
a(k) = k^2;
end
disp(a)
1 4 9 16 25

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by