How can I use an if statement to compare an input in a function script?
7 views (last 30 days)
Show older comments
How can I get this If statement to work? why doesn't it work in the first place?
0 Comments
Accepted Answer
OCDER
on 24 Jul 2018
Your cell_num_mem_1 was never defined before the if statement. What is the value of this variable, or is it a function that returns a value?
p = 1;
cell_num_mem_1 = ???? %define a value here
if p == cell_num_mem_1
disp('if statement worked')
end
More Answers (0)
See Also
Categories
Find more on MATLAB Report Generator in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!