What does a "~" mean in the following code

97 次查看(过去 30 天)
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 个评论
Todd Flanagan
Todd Flanagan 2011-1-20
Andreas say, "I found it. ~ indicates not.
Thx anyway"
Todd Flanagan
Todd Flanagan 2011-1-20
Hi Andreas, I moved your answer into a comment on your original question.

请先登录,再进行评论。

采纳的回答

Kenneth Eaton
Kenneth Eaton 2011-1-20
This is the logical NOT operator, so ~isempty(E) will evaluate to true when E is not empty.

更多回答(2 个)

Doug Hull
Doug Hull 2011-1-20
~ means 'not'
doc punct
At the command line will tell you other uses for ~ and the punctuation marks.

Luna
Luna 2024-4-18,6:25
  1. For what values of the variable a will the following code print 'Goodbye Mapua'?
  2. if a < 7 || a >= 4
  3. disp('Hello Mapua ')
  4. else
  5. disp('Goodbye Mapua ')
  6. end

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by