how to change this error
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
Undefined function or variable 'water_r'.Error in sc (line 10) meanwater_r=mean(water_r);
1 comentario
Andrei Bobrov
el 12 de Oct. de 2017
Defin your variable water_r.
Respuestas (1)
KL
el 12 de Oct. de 2017
if you're using it inside another function, you have to pass it as an argument.
function output = yourFunction(bla, bla, water_r)
...
meanwater_r=mean(water_r);
...
end
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!