clc
clear
for a = [0.01 0.01 0.01 0.03 0.1 0.2 0.3 0.3 0.3 0.4 0.4 0.4 0.3 0.4 0.5 0.8 0.9 1 0.8 0.7 0.5 0.2 0.1 0.03];
b=a*5
end
How can I store new values of b for each iteration ?

1 comentario

Mischa Kim
Mischa Kim el 16 de Abr. de 2021
Hi Lauris, depends. What exactly are you trying to do?

Iniciar sesión para comentar.

 Respuesta aceptada

David Hill
David Hill el 16 de Abr. de 2021
a = [0.01 0.01 0.01 0.03 0.1 0.2 0.3 0.3 0.3 0.4 0.4 0.4 0.3 0.4 0.5 0.8 0.9 1 0.8 0.7 0.5 0.2 0.1 0.03];
for k= 1:length(a)
b(k)=a(k)*5;%index into b
end
Better, just multiply, no loop needed.
b=5*a;

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Preguntada:

el 16 de Abr. de 2021

Respondida:

el 16 de Abr. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by