テーブル内の数値を浮動小数点の表示にしたい
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
App Designerでテーブル内の数値を浮動小数点の表示にするにはどのようにすればよいでしょうか
よろしくお願いします。
0 Commenti
Risposta accettata
Kojiro Saito
il 14 Feb 2023
「UITABLE で表示される数値を任意桁数で表示できますか?」が参考になると思います。UITableで使えるColumnFormatというプロパティを変更して実現できます。出力表示はこちらのドキュメントにリストがあります。
実行例:
app.UITable.Data = [93.1285, 128.3428, 8458.2];
app.UITable.ColumnFormat = {'longG', 'longG', 'longG'};
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su App Designer を使用したアプリ開発 in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!