What does a tilde (~) inside square brackets mean?

539 vues (au cours des 30 derniers jours)
Delvin
Delvin le 18 Avr 2013
Commenté : Adam Danz le 3 Jan 2021
[~, Palette] = kmeans(reshape(B(:),M*N,3),8,'E','s','S','U');
Specifically, what does the ~ inside the square brackets represent (e.g. a matrix with multiple LHS assignment)?

Réponse acceptée

Tanguy
Tanguy le 18 Avr 2013
The function kmean can be used with two outputs :
[IDX,C] = kmeans(X,k)
Here you use the brackets to define the two outputs (it is not an array). Here, IDX will be the first output (a vector containing the cluster indices of each point) and C will be the second one (a matrix containing the cluster centroid locations).
So the brackets don't mean that you have just one ouput (an array), but they are used to gather the outputs.
And whatever happens, IDX will be the first output and C the second one.
But if you just want to know C (and you don't care IDX), it is not usefull to assign this value to a variable.
So, when you use [~,palette], that means that you just want the second output of your function, and do not care the first one.
Use this is helpfull for you (you don't have many useless variables in your workspace), and is faster!
  7 commentaires
Walter Roberson
Walter Roberson le 3 Jan 2021
Does this '~' save the time for calculating IDX, or it calculates both IDX and C but only output C?
As far as the community experts have been able to tell, the implementation is that an output slot is still created for the ~ variables, but that no symbol table entry is created and the output is released afterwards -- the same way that for 1 + 2 + 3 an output slot must be created for the (1+2) part but the slot is unnamed and will be released.
As far as the community experts have been able to find, there is no documented method or flag on a variable that could be used by a function to determine that a particular ~ output is going to be thrown away.
You can use nargout to probe what the index of the last programmed output is, but you cannot tell whether any of them are ~ or not.
Adam Danz
Adam Danz le 3 Jan 2021
> Does this '~' save the time for calculating IDX, or it calculates both IDX and C but only output C?
This discussion focuses on that topic:
TL;DR: no but there are ways to communicate which output variables should be produced in your function.

Connectez-vous pour commenter.

Plus de réponses (2)

Walter Roberson
Walter Roberson le 18 Avr 2013
It is equivalent to
[temp, Palette] = kmeans(reshape(B(:),M*N,3),8,'E','s','S','U');
clear temp
  2 commentaires
Delvin
Delvin le 18 Avr 2013
What is "temp" ? Is it short for temporary as in temporary variable? Also, what does the square brackets mean ie is this an array ? Thanks
Walter Roberson
Walter Roberson le 9 Mai 2019
[ThIsVArIAblEiZnOTuzED, Palette] = kmeans(reshape(B(:),M*N,3),8,'E','s','S','U');
clear ThIsVArIAblEiZnOTuzED
and the [] mean that multiple outputs are being returned from the function. It is not an array.

Connectez-vous pour commenter.


Ankur Bhardwaj
Ankur Bhardwaj le 24 Mai 2017
Whether it is supported in Matlab Version 2009 or not.
  1 commentaire
Steven Lord
Steven Lord le 24 Mai 2017
This functionality was introduced in release R2009b. So it depends what you mean by "Version 2009" -- release R2009a no, release R2009b yes.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Call Python from MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by