pretty and uitable gui
2 ビュー (過去 30 日間)
古いコメントを表示
result of code
syms a b c
pretty[a^2;b/c]
is possible to insert into uitable- gui?
And also it is possible to put it into uitable into separately lines?
thanks
0 件のコメント
採用された回答
Walter Roberson
2013 年 2 月 19 日
T1 = [a^2;b/c];
T2 = evalc('disp(T1)');
Now T2 will be a char() array.
When you put it into separate lines in the uitable, do you want the raised 2 to be a separate line from the "a" ? Or do you want each of the expressions to become character arrays that you would insert one complete expression per cell ?
7 件のコメント
Walter Roberson
2013 年 2 月 20 日
I do not have the Mathworks MuPAD-based symbolic toolbox, so I am testing with the Maple-based symbolic toolbox; it is working for me in that.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!