What does a "~" mean in the following code
30 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
A newbie (me) needs to understand a syntax I can't find in the documentation.
if ~isempty(E)
B=[A
E'*S];
end;
What does the ~ (tilde) mean or do prior to the isempty(E)?
2 commentaires
Todd Flanagan
le 20 Jan 2011
Hi Andreas, I moved your answer into a comment on your original question.
Réponse acceptée
Plus de réponses (2)
Doug Hull
le 20 Jan 2011
~ means 'not'
doc punct
At the command line will tell you other uses for ~ and the punctuation marks.
0 commentaires
Luna
le 18 Avr 2024
- For what values of the variable a will the following code print 'Goodbye Mapua'?
- if a < 7 || a >= 4
- disp('Hello Mapua ')
- else
- disp('Goodbye Mapua ')
- end
0 commentaires
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!