returning an array argument
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
I am returning a double array, inst_array, from a function:
function [inst_array, pass ] = ....
In the called function, the return argument looks correct, I explicitly assign it.
But If I stop the debugger just after returning, the returning variable holds the incorrect double values. It is dimensioned correctly, and some values are incorrect.
1 comentario
the cyclist
el 16 de Feb. de 2012
Are you able to distill this into a small problem that you can post here? You're not really giving us much to go on. :-)
Respuestas (1)
John Lofgren
el 16 de Feb. de 2012
0 votos
2 comentarios
Walter Roberson
el 16 de Feb. de 2012
Absolutely definitely Yes.
function foo = bar()
foo = magic(5);
end
James Tursa
el 16 de Feb. de 2012
Yes. MATLAB can return any variable, including an array.
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!