why legend for multiple matrix is not showing the appropriate data?

조회 수: 1 (최근 30일)
suchismita
suchismita 2014년 6월 24일
댓글: Ben11 2014년 6월 25일
I have 6 matrix as A=rand(10,10),B=rand(10,10),C=rand(10,10) and a=rand(10,10),b=rand(10,10),c=rand(10,10). i want to plot all elements as plot(a,A,'r*',b,B,'b+',c,C,'go'); i am able to plot this way but while calling legend i am facing problem.
i want legend('a','b','c'); where a will indicate red color *,b as blue + and c as green o.
can it be done please help me...i am getting output as
  댓글 수: 3
suchismita
suchismita 2014년 6월 24일
all elements are not getting plotted....i dont want lines...i want all element to be in a figure...
suchismita
suchismita 2014년 6월 25일
i have changed my question please have a look....

댓글을 달려면 로그인하십시오.

채택된 답변

Ben11
Ben11 2014년 6월 24일
When I run your code I get this:
Could you be more precise as to what exactly you want?
  댓글 수: 6
suchismita
suchismita 2014년 6월 25일
i have done it!!!!
hold on
p1=plot(a,A,'or');
p2=plot(b,B,'+b');
p3=plot(c,C,'pg');
legend([p1(1) p2(1) p3(1)], 'a','b','c');
this worked.....

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by