Line of code instead of "ans"
3 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I begin by an example.
A = [2 4]; A(1)
I'd like to know if there's a setting in the Matlab Preferences which returns
A(1) = 2
instead of
ans = 2
I know that I can write something like
fprintf('A(1)', num2str(A(1)));
but it's long to do for every variables I want to display.
Thanks,
Martin
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 6 月 7 日
編集済み: Azzi Abdelmalek
2013 年 6 月 7 日
f=@(x,s,ii) [s sprintf('(%d)=',ii) num2str(x(ii))]
disp(f(A,'A',2))
0 件のコメント
その他の回答 (2 件)
Shashank Prasanna
2013 年 6 月 7 日
Nothing I am aware of but you can terminate the code with a semicolon and then use the diary command to capture the commands.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!