What does a "~" mean in the following code
Ältere Kommentare anzeigen
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 Kommentare
Todd Flanagan
am 20 Jan. 2011
Andreas say, "I found it. ~ indicates not.
Thx anyway"
Todd Flanagan
am 20 Jan. 2011
Hi Andreas, I moved your answer into a comment on your original question.
Akzeptierte Antwort
Weitere Antworten (2)
Doug Hull
am 20 Jan. 2011
~ means 'not'
doc punct
At the command line will tell you other uses for ~ and the punctuation marks.
Luna
am 18 Apr. 2024
0 Stimmen
- 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
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!