how to write number into uitable?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
best16 programmer
el 22 de Mayo de 2017
Comentada: Jan
el 22 de Mayo de 2017
hello, i have a uitable in a gui application and i want to write a number such as:
x=x0±0.01
with x0 is a number,can you help me with that?
thank you
0 comentarios
Respuesta aceptada
Jan
el 22 de Mayo de 2017
Editada: Jan
el 22 de Mayo de 2017
"x=x0±0.01" is not a number. You can write this as a string only. Then you can parse the strings when the data are used.
2 comentarios
Jan
el 22 de Mayo de 2017
What about Star Strider's example? I still do not know, what you want to achieve.
Más respuestas (1)
Star Strider
el 22 de Mayo de 2017
I would use sprintf to create ‘x’:
x = sprintf('%.2f±0.01', x0);
Change it if necessary to create the result you want.
0 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!