Putting tables in message boxes
10 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to display a table in a messgae box, i've written this bit of code to test with:
function Pop_up
A = ['1','2','3','4','5'];
B = ['5','4','3','2','1'];
fprintf('Num1\t\tNum2\n');
fprintf('%5.1f\t\t%5.1f\n', A, B);
which displays the table in the command window just fine, but how do I now put this into a message box? presumably with:
msgbox()
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Text Analytics Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!