📜  从一个有多个输出的函数中只获取一个输出? matlab - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:54.989000             🧑  作者: Mango

代码示例1
% this code runs in MATLAB 
% for example if anyFunction() has 3 outputs,
% then you can get second output in this way:

[~, v, ~] = anyFunction()