error in matlab arithmetic operations ?
5 views (last 30 days)
Show older comments
I am puzzled by the result of this operation in matlab:
I have a var that equals 3
I am trying to calculate (var-1)*60
instead of getting 120 I get 3000, it may have something to do with number formatting ?
3 Comments
John D'Errico
on 7 Jul 2020
It should have nothing to do with formatting a number. Far more likely, the variable you used does not contain the number 3, or perhaps the multiplier is not 60, IF you got 3000 as a result. But we cannot know, because you have not shown what you really have, only what you THINK you have.
Possibly, you have a variable in your workspace that is equal to 3. But inside a function, you defined a variable with the same name, that has some other value. probably on the order of 50. So inside your function, you get a product of 3000. The resulting problem may lie in not understanding function workspaces. Or it may be due to something else, that is difficult to guess. Unless you provide an example where this happens, we cannot easily help you. Of course, you can never show an example where it will really happen, because it is not true that 2*60 is ever roughly 3000.
As I said, I'd conjecture this is a problem with function workspaces. It might even be an isssue with global variables, where some variable got changed and you never knew it did.
Accepted Answer
Steven Lord
on 7 Jul 2020
Your variable named var (which is a bad idea, because var already has a meaning in MATLAB) is not 3. It is '3'.
xDouble = 3;
(xDouble-1)*60
xChar = '3';
(xChar-1)*60
The ASCII value of '3' is 51. When you subtract 1 from '3' the result is the double value 50 and 50*60 is 3000.
More Answers (0)
See Also
Categories
Find more on Characters and Strings 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!