Borrar filtros
Borrar filtros

Save the values of a function in a for loop

6 visualizaciones (últimos 30 días)
Austin Hernandez
Austin Hernandez el 27 de Abr. de 2020
Comentada: Mrutyunjaya Hiremath el 27 de Abr. de 2020
I need to record the y-values of a line from x=a to x=b.
Each loop, the slope of the line will change so there will be a different set of x and y's for each loop
How can I record the y-values from the function for each loop? The above fix doesn't work if a function is inside of it. This is my code and gives me an error once it trys to record y(i):
function for_test
x = 0:1:10;
y = ones(size(x)) ;
for i=1:10
y(i) = x+rand;
y % use y(i) so that it is written as a vector
end
end
  2 comentarios
Mohammad Sami
Mohammad Sami el 27 de Abr. de 2020
The problem is this line
y(i) = x+rand;
The variable x is length 11
x+rand; % this would generate an output of length 11
However you are trying to assign it to a single value of y
y(i) % this is lenght 1
Therefore you are getting an error in assignment.
Austin Hernandez
Austin Hernandez el 27 de Abr. de 2020
That is the exact error message I am getting but my question was how do I store each y values for each through each loop? I think I found a workaround, and that is to put the data into a cell array with {i}. Is that the proper fix or is there another way?

Iniciar sesión para comentar.

Respuesta aceptada

Mrutyunjaya Hiremath
Mrutyunjaya Hiremath el 27 de Abr. de 2020
Hell Austin Hernandez,
you are correct. but Option01 is good.
Option 01:
function for_test
x = 0:1:10;
y = zeros(size(x)) ;
for i=1:10
y(i,:) = x+rand;
y % use y(i) so that it is written as a vector
end
end
Option 02:
function for_test
x = 0:1:10;
y = {}; %ones(size(x)) ;
for i=1:10
y{i} = x+rand;
y % use y(i) so that it is written as a vector
end
end
  5 comentarios
Austin Hernandez
Austin Hernandez el 27 de Abr. de 2020
thank you, I will do that
Mrutyunjaya Hiremath
Mrutyunjaya Hiremath el 27 de Abr. de 2020
@ Austin,
Thank you
And, Initialize the values with One NOT Zero ...
c = 1;
m = 1;
u = 1;

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by