error in matlab arithmetic operations ?
Ältere Kommentare anzeigen
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 Kommentare
Star Strider
am 7 Jul. 2020
First, note that var is the built-in MATLAB funciton to calculate the variance of an array.
Second, what is the result of running:
whos var
.
John D'Errico
am 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.
LO
am 7 Jul. 2020
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Variables finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!