Line of code instead of "ans"

5 views (last 30 days)
Martin
Martin on 7 Jun 2013
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

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 7 Jun 2013
Edited: Azzi Abdelmalek on 7 Jun 2013
f=@(x,s,ii) [s sprintf('(%d)=',ii) num2str(x(ii))]
disp(f(A,'A',2))

More Answers (2)

Shashank Prasanna
Shashank Prasanna on 7 Jun 2013
Nothing I am aware of but you can terminate the code with a semicolon and then use the diary command to capture the commands.

Martin
Martin on 7 Jun 2013
Thanks for your answers.

Categories

Find more on Debugging and Analysis in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!