Answers for "matlab if not true"

0

matlab if not true

~A

% or you can use:

not(A)

% in more complex statements, such as if's:

if ~(condition)
% logic
end
Posted by: Guest on October-26-2020

Browse Popular Code Answers by Language