Answers for "matlab check if variable is boolean"

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

Code answers related to "matlab check if variable is boolean"

Browse Popular Code Answers by Language