Uitable and vpa
2 ビュー (過去 30 日間)
古いコメントを表示
Hi, I have problem with my code: vpa works for "result", but I need show result in the uitable1, but for "res" command vpa doesn't work.
matrix=[A B;C D]
a=simple(matrix\X);
b=sym(a)
result=vpa(b,4)
f=size(result);
for i=1:f(1);
for j=1:f(2);
res(i,j)=cellstr(char(result(i,j)));
end
end
set(handles.uitable1,'Data',res);
Please help
0 件のコメント
採用された回答
Sean de Wolski
2012 年 3 月 6 日
Instead of char(result), use num2str() or sprintf()
doc num2str
doc sprintf
and for the comparison,
doc char
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Numbers and Precision についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!