Clear Filters
Clear Filters

tilde use before if condition

55 views (last 30 days)
I was looking at on Matlab code , I could not understand the use of tilde ~ before if condition .
if ~isfield(ArgDS,'mu')

Accepted Answer

Star Strider
Star Strider on 12 Nov 2016
The tilde ‘~’ is a logical negation. So the if condition will be true when 'mu' is not a field of the ‘ArgDS’ structure.
  2 Comments
boureghda mohammed
boureghda mohammed on 14 Nov 2016
Thanks for the clarification "Star Strider"

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!