Converting comma to dot in app designer
古いコメントを表示
Hi, i'm trying to convert a number with comma to number with dot, like "0,25" to "0.25"
In the past i used in GUIDE the follow structure and always worked just fine:
function calcular_cc_geradorButtonPushed(app, event)
escolha_lista_curto = app.escolha_curto.Value
X1_pu = str2double(strrep(app.Z_x1.Value,',','.'));
if strcmp(escolha_lista_curto,'Ex: 1Ø')
app.z_base.Value=X1_pu;
end
end
But now, i'm always getting the same error:
'Value' must be a double scalar within the range of 'Limits'.
What should i do?
Thanks
6 件のコメント
Stephen23
2019 年 5 月 4 日
Jucimar Carpe
2019 年 5 月 4 日
Stephen23
2019 年 5 月 4 日
What is the value of X1_pu ?
Jucimar Carpe
2019 年 5 月 4 日
Walter Roberson
2019 年 5 月 5 日
If X1_pu is coming out as double and scalar, then the implication is that Limits is the problem.
Jucimar Carpe
2019 年 5 月 5 日
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!