How can I detect inside a function which output args are being used by the caller ie. those that aren't "~"?

3 次查看(过去 30 天)
I have a function which is called multiple times with different inputs. I don't always require all the outputs and it takes effort to provide each output, so it'd be nice to skip some of the processing for those not being used. I know about nargout, but that's only efficient if your outputs are hierarchical
eg. I want to expend the minimum amount of effort to calc a,b and c in all of these examples [a,b,c] = func(); [~,~,c] = func(); [a,~,c] = func(); [~,b] = func();

回答(1 个)

Niklas Nylén
Niklas Nylén 2014-4-17
Unless this has been added very recently there is unfortunately no way to know which outputs will actually be used. One way to achieve the same result would be to add flags to the input data and use those to select which calculations to perform.

类别

Help CenterFile Exchange 中查找有关 GPU Computing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by