Multiple plots taking different elements of X & Y matrices in a systematic pattern
조회 수: 1 (최근 30일)
이전 댓글 표시
I have X as a 1x40 matrix with its elements being X1,X2,X3,......,X40. Similarly Y as another 1x40 matrix with elements being Y1,Y2,Y3,....,Y40.
Now I want to have a graph which takes the first four values of X (i.e. X1-4) and first four of Y (i.e. Y1-4) and shows their plot. Then again take next four values for each(i.e. X5-8 & Y5-8) and plot them differently in the same graph and so on.. In this way I want to have 10 different plots in the same graph.
Is there any way to do it (loops maybe) other than just doing it separately for each?
댓글 수: 0
채택된 답변
darova
2021년 5월 23일
Try reshape
x = linspace(0,10,40);
y = sin(x);
x1 = reshape(x,[4 10]);
y1 = reshape(y,[4 10]);
plot(x1,y1)
추가 답변 (1개)
Girijashankar Sahoo
2021년 5월 23일
x=[1:1:40];
y=[1:1:40];
l=length(x)/4
n=1
for i=1:l
plot(x(1,n:4*i),y(1,n:4*i))
hold on
n=4*i+1;
end
참고 항목
카테고리
Help Center 및 File Exchange에서 Discrete Data Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!