[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 件のコメント

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 4 月 30 日
What case?
JL555
JL555 2016 年 4 月 30 日
編集済み: JL555 2016 年 4 月 30 日
That coding i posted...because only one legend comes and not 2
Walter Roberson
Walter Roberson 2016 年 4 月 30 日
You legend once for every iteration of your for loops. You need 42 legend entries.
JL555
JL555 2016 年 4 月 30 日
編集済み: JL555 2016 年 4 月 30 日
My bad let me edit the code
Walter Roberson
Walter Roberson 2016 年 4 月 30 日
Are your x2 vectors or 2 dimensional arrays?
JL555
JL555 2016 年 5 月 1 日
編集済み: JL555 2016 年 5 月 2 日
both x1 and x2 is 1x50 double

サインインしてコメントする。

 採用された回答

Walter Roberson
Walter Roberson 2016 年 5 月 2 日

0 投票

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

1 件のコメント

JL555
JL555 2016 年 5 月 2 日
編集済み: JL555 2016 年 5 月 2 日
yes walter i figured it out...by the way thanks anyway do you have any idea on pareto frontier for 2 objective functions?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeGraphics Performance についてさらに検索

タグ

質問済み:

2016 年 4 月 30 日

編集済み:

2016 年 5 月 2 日

Community Treasure Hunt

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

Start Hunting!

Translated by