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

 Réponse acceptée

Oleg Komarov
Oleg Komarov le 3 Avr 2012

5 votes

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 commentaires

Jan
Jan le 3 Avr 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 le 3 Avr 2012
Thanks Oleg and Jan for your answers.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by