Effacer les filtres
Effacer les filtres

question on use of Tilde

3 vues (au cours des 30 derniers jours)
Srinivas
Srinivas le 7 Oct 2012
Hi
I was looking at on of the sample code in matlab webinars, I could not understand the use of ~ in the code below , as I understand that ~ (not) is a logical operator.
% Perform a parameter sweep to identify the best setting.
sh = nan(100,1);
for m = 2:100
[~,~,sh(m)] = leadlag(BundClose,1,m);
end
[~,mxInd] = max(sh);
Please help, thanks in advance.
Rgds

Réponse acceptée

Walter Roberson
Walter Roberson le 7 Oct 2012
When ~ appears in the left side of an assignment statement with multiple outputs, it means that that particular output should be discarded.
For example,
[~,mxInd] = max(sh);
is the same as
[TEMP,mxInd] = max(sh);
clear TEMP
This syntax has only been part of MATLAB since about R2009b or so.
  1 commentaire
Srinivas
Srinivas le 7 Oct 2012
Thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by