Ignore output arguments (R2006a)

Some versions of MATLAB allow to ignore selected output arguments by using '~'. How can I do that in R2006a (v7.2)?
For example: [Y,I]=sort(X) --> [~,I]=sort(X); I just want the second output
Thanks in advance

 Risposta accettata

Oleg Komarov
Oleg Komarov il 3 Apr 2012

5 voti

You cannot.
This feature was introduced in R2009b: Ignore Selected Arguments on Function Calls
What you can do is:
  1. [I,I] = sort(X)
  2. [trash,I] = sort(X)
In the first case, you'll keep only one variable in the workspace, but it's not very elegant (in my opinion). In the second case, it's immediate that you need only the second output.

2 Commenti

Jan
Jan il 3 Apr 2012
The [I,I] method forces me to think twice when I read the code, while the [trash, I] is trivial. An option is to add "clear('trash')" to release the occupied memory.
Sandra
Sandra il 3 Apr 2012
Thanks Oleg and Jan for your answers.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by