what does x='1' mean
2 views (last 30 days)
Show older comments
x='1'
y='2'
disp(x+y)
why is the answer 99
2 Comments
Matt J
on 25 Feb 2021
Did you run the code? If so, you should be able to tell us what the answer is.
Accepted Answer
David Hill
on 25 Feb 2021
The + converts the characters into their double equivalent so they can be added.
double('1')+double('2');% = 99
0 Comments
More Answers (0)
See Also
Categories
Find more on Logical 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!