How to plot with different sized matrices ?
조회 수: 14 (최근 30일)
이전 댓글 표시
I have a matrix of 1x1000 and another matrix of 1x10. How can I plot these two against each other?
댓글 수: 4
Steven Lord
2017년 5월 12일
I'm not quite sure what you mean by "plot these two against each other". How many points would you want to appear on the axes when executing this smaller example, and EXACTLY where would you want those points to appear? Would there be anything special or unusual about any or all of those points? Different colored markers, different sized markers, different markers entirely, etc. [Note that this will NOT work as written; there is no plotForShrivathsaS function. If such a function were to exist, how should it behave?]
x1 = [1 2 3 4];
x2 = [5 6 7];
plotForShrivathsaS(x1, x2)
답변 (2개)
KSSV
2017년 4월 25일
x1 = rand(1,100) ;
x2 = rand(1,10) ;
%%plo tonly matrices
plot(x1,'r') ;
hold on
plot(x2,'g') ;
legend('data1', 'data2');
댓글 수: 2
Walter Roberson
2017년 5월 12일
x = rand(1,100) ;
y = rand(1,10) ;
%%plot only matrices
plot(x, zeros(size(x)), 'r*-') ;
hold on
plot(zeros(size(y), y, 'g*-') ;
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!