help multiple legends?

[sol]=aaa(@ptch);
[x1,x2]=ptch(sol)
plot(x1,x2,'r.-');hold on;
xlabel('x1');ylabel('x2')
legend('Modified');
pause('on')
fprintf('Press any key to continue to other algorithm')
pause
[Sol]=bbb(@ptch);
[x1 x2]=ptch(Sol)
plot(x1,x2,'k.-'); hold on;
xlabel('x1');ylabel('x2')
legend('pre modified');
toc
how to display the legend in such a case?

6 Comments

What case?
JL555
JL555 on 30 Apr 2016
Edited: JL555 on 30 Apr 2016
That coding i posted...because only one legend comes and not 2
You legend once for every iteration of your for loops. You need 42 legend entries.
JL555
JL555 on 30 Apr 2016
Edited: JL555 on 30 Apr 2016
My bad let me edit the code
Are your x2 vectors or 2 dimensional arrays?
JL555
JL555 on 1 May 2016
Edited: JL555 on 2 May 2016
both x1 and x2 is 1x50 double

Sign in to comment.

 Accepted Answer

Walter Roberson
Walter Roberson on 2 May 2016

0 votes

Do not call legend() twice. Call it once and pass in both entries.

1 Comment

JL555
JL555 on 2 May 2016
Edited: JL555 on 2 May 2016
yes walter i figured it out...by the way thanks anyway do you have any idea on pareto frontier for 2 objective functions?

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Performance in Help Center and File Exchange

Tags

Asked:

on 30 Apr 2016

Edited:

on 2 May 2016

Community Treasure Hunt

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

Start Hunting!