How save the array?

5 visualizaciones (últimos 30 días)
ANANTA BIJOY BHADRA
ANANTA BIJOY BHADRA el 29 de Mzo. de 2023
Comentada: Andres Montes el 29 de Mzo. de 2023
I have an array satring from 0.1 to 1 with 0.1 difference. I have to use it in foor loop. It is required that ra has to be in the below format.
for ra=0.1:0.1:1
%do something
end
howover, the value of ra is also have to be stored in a different array. Lets say the array is raz. How can I store the value of ra with each iteration in raz? I hope i have been able to explain the question

Respuestas (1)

Andres Montes
Andres Montes el 29 de Mzo. de 2023
Hi, you can first store the raz and then use it in a for:
raz=(0.1:0.1:1)
raz = 1×10
0.1000 0.2000 0.3000 0.4000 0.5000 0.6000 0.7000 0.8000 0.9000 1.0000
for ra=raz(1):raz(end)
%Do something
end
In this way you'll have both, the for and the variable
  1 comentario
Andres Montes
Andres Montes el 29 de Mzo. de 2023
Another thing you can do is declare the variable raz, and then use positions in the for instead of the actual numbers
raz=(0.1:0.1:1)
for i=1:length(raz)
ra=raz(i);
%Do something
end
In this way you can have your vector raz and utilize the value you need by calling a speific element of the vector

Iniciar sesión para comentar.

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by