How to save iteration values as array if for loop- for t=0:0.5:3?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
archana malagi
el 9 de Ag. de 2017
Comentada: archana malagi
el 9 de Ag. de 2017
Dear Experts, I need to save M(t) iteration values as array if for loop as follows:
for t=0:0.5:3
M(t)=a2.*(exp(-(t./T1)))
end
This gives error as 'Subscript indices must either be real positive integers or logicals'.
Please help.
0 comentarios
Respuesta aceptada
kowshik Thopalli
el 9 de Ag. de 2017
Use another index value outside the loop and keep updating it inside the loop such as
index=1
for t=0:0.5:3
M(index) = whatever you have
index=index+1
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!