What does a "~" mean in the following code

96 visualizaciones (últimos 30 días)
Andreas
Andreas el 20 de En. de 2011
Respondida: Luna el 18 de Abr. de 2024 a las 6:25
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 comentarios
Todd Flanagan
Todd Flanagan el 20 de En. de 2011
Andreas say, "I found it. ~ indicates not.
Thx anyway"
Todd Flanagan
Todd Flanagan el 20 de En. de 2011
Hi Andreas, I moved your answer into a comment on your original question.

Iniciar sesión para comentar.

Respuesta aceptada

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

Más respuestas (2)

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

Luna
Luna el 18 de Abr. de 2024 a las 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

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by