for loops and the if statement
Show older comments
This is a beginner question im sure i just dont understand why is it that i have to use 2 equal signs in the if statement?
for n=0:10;
fprintf('n=%d\n',n);
if n==0
i cannot use n=0 ??
thanks BN
Accepted Answer
More Answers (1)
sourav malla
on 26 Jun 2019
If you are assigning something inside the loop then its:
z=0;
And if you are checking a statement for true or false then:
z==0;
basically it will return logical 1 or 0 based upon 'true' or 'false' in matlab.
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!