フィルターのクリア

Force to display decimal places?

3 ビュー (過去 30 日間)
Jared
Jared 2011 年 10 月 17 日
I'm using format short to set up my display preference. I store values in a matrix and then use uitable to display it.
Quick example of how it currently is displayed: 49.2250 150 123.2500e-04
How I want it: 49.2250e0 150.0000e0 123.2500e-04
Is it possible to force this in uitable?

採用された回答

Sean de Wolski
Sean de Wolski 2011 年 10 月 17 日
Sure, use sprintf.
doc sprintf
  1 件のコメント
Walter Roberson
Walter Roberson 2011 年 10 月 17 日
Additionally, note that uitable has no method of controlling the number of decimals for a field marked as being numeric, with the exception of declaring the field to use bank format. Sean's answer gets around this by storing strings in the uitable instead of numeric values. If you need the original numeric value back again, you will need to either retrieve it from the original data, or you will need to str2double() the string representation (which will give you an approximation of the original value.)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by