function of two variables

2 visualizaciones (últimos 30 días)
saja mk
saja mk el 18 de Sept. de 2020
Comentada: madhan ravi el 18 de Sept. de 2020
i had a function with two variables f(x1,x2)
in loop for k times
how can i calculate the value of the function in each iteration??

Respuestas (1)

madhan ravi
madhan ravi el 18 de Sept. de 2020
C = cell(numel(x1));
for k = 1:numel(x1)
C{k} = f(x1(k), x2(k)); % of f() is vectorised you won’t need a loop
end
celldisp(C)
  2 comentarios
saja mk
saja mk el 18 de Sept. de 2020
thank you alot for your reply , but can you please explain what you meant by
C = cell(numel(x1)); ??
madhan ravi
madhan ravi el 18 de Sept. de 2020
I was preallocating variable C , which makes the code more optimised . You could look up preallocation and explore why it’s important.

Iniciar sesión para comentar.

Categorías

Más información sobre Programming 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