It doesn't count right
1 回表示 (過去 30 日間)
古いコメントを表示
It count my 0,00xxxxxx number as 0 and doesn't count anything at all, any idea how to solve it ?

3 件のコメント
回答 (3 件)
Guillaume
2018 年 1 月 11 日
編集済み: Guillaume
2018 年 1 月 11 日
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 件のコメント
John D'Errico
2018 年 1 月 11 日
編集済み: John D'Errico
2018 年 1 月 11 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!