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

3 visualizaciones (últimos 30 días)
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();

Respuestas (1)

Niklas Nylén
Niklas Nylén el 17 de Abr. de 2014
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.

Categorías

Más información sobre GPU Computing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by