How to fix this error

1 visualización (últimos 30 días)
Matthew Backert
Matthew Backert el 23 de Feb. de 2018
Editada: James Tursa el 23 de Feb. de 2018
I need some help fixing this error, I assume it's in the way I call the function. Any help would be much obliged.

Respuesta aceptada

James Tursa
James Tursa el 23 de Feb. de 2018
Editada: James Tursa el 23 de Feb. de 2018
You need to save the output of fun into specific elements of T, P, and D. E.g.,
h=0:1:105;
for k=1:numel(h)
[T(k),P(k),D(k)]=fun(h(k));
end
And account for an h input of 0 in your fun.m code:
if(0<=h && h<=11) % <-- changed 0<h to 0<=h

Más respuestas (0)

Categorías

Más información sobre Clocks and Timers en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by