how to write number into uitable?

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

 Accepted Answer

Jan
Jan on 22 May 2017
Edited: Jan on 22 May 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 Comments

thank you,but the x0 is a number. can you please show me an example
What about Star Strider's example? I still do not know, what you want to achieve.

Sign in to comment.

More Answers (1)

I would use sprintf to create ‘x’:
x = sprintf('%.2f±0.01', x0);
Change it if necessary to create the result you want.

Categories

Find more on App Building in Help Center and File Exchange

Products

Asked:

on 22 May 2017

Commented:

Jan
on 22 May 2017

Community Treasure Hunt

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

Start Hunting!