It doesn't count right
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
It count my 0,00xxxxxx number as 0 and doesn't count anything at all, any idea how to solve it ?

3 Commenti
Risposte (3)
Guillaume
il 11 Gen 2018
Modificato: Guillaume
il 11 Gen 2018
It is really hard to figure out what the problem is when the statement includes vague words such as it without specifying what it is, or nothing happens when clearly something happens.
Is your problem that you're trying to use , as a decimal mark. As far as I know matlab only supports . as the decimal mark, regardless of your locale settings. Therefore,
alpha = 0.0339;
%and so on
0 Commenti
John D'Errico
il 11 Gen 2018
Modificato: John D'Errico
il 11 Gen 2018
Hmm. I wonder if you are using MATLAB wrongly. At least, the version of MATLAB that you happen to be using. For example, when I type this in MATLAB:
alpha=0,0039;
alpha =
0
I get alpha is EXACTLY zero. Not 0.00329. As you can see, I'm using a decimal point, not a comma.
So for me, MATLAB sees the comma as a separator between statements here.
But, from your name and your use of numbers like 0,0039, I will guess that your expectation is that MATLAB should see that as a number. MATLAB uses a numeric format chosen to match the expectation. I looked in the preferences for my US version, and I did not see one that would allow me to change that behavior, except in how it would export numbers placed onto the system clipboard.
My guess is you happen to be using a version of MATLAB, perhaps obtained here in the states, that would require you to write those lines as:
alpha=0.0039;
beta=0.022;
Uin=1058.53206;
0 Commenti
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!