Converting comma to dot in app designer

1 visualización (últimos 30 días)
Jucimar Carpe
Jucimar Carpe el 4 de Mayo de 2019
Comentada: Jucimar Carpe el 5 de Mayo de 2019
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 comentarios
Walter Roberson
Walter Roberson el 5 de Mayo de 2019
If X1_pu is coming out as double and scalar, then the implication is that Limits is the problem.
Jucimar Carpe
Jucimar Carpe el 5 de Mayo de 2019
Yah, thats true.
But the questoin is: Is it possible to converto from comma to dot?
Or in the worst scenario, it it possible to create a pop window to inform the user that it must enter a number with dot?

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Graphics Object Programming en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by