我在 Matlab 中使用具有多个输出的函数,但只对其中一个输出感兴趣。我想抑制其他输出变量(即避免它们被返回并放入内存)。例如,使用 max 函数:
[output1 output2] = max(matrixA, [], 1);
% output1 returns the maximum, which i'm not interested in
% output2 returns the index of the maximum, which i *am* interested in
有什么方法可以调用该函数以便不返回 output1 吗?如果有,它是否比上述计算提供任何内存优势,但立即调用clear output1
从内存中删除 output1?
谢谢你的帮助。