plot single vector and plot matrix
조회 수: 8 (최근 30일)
이전 댓글 표시
TEE =[3 8 9 12 3 2]
TEE1=[98 45 32 45 1 8]
TEE2(1,:)=TEE;
TEE2(2,:)=TEE1;
figure
hold on
plot(TEE)
plot(TEE1)
hold off
figure
plot(TEE2)
but the result is different!
how can build matrix using single vector and plot it?
댓글 수: 0
채택된 답변
Dyuman Joshi
2023년 11월 23일
편집: Dyuman Joshi
2023년 11월 23일
To get the same result, transpose the array and then plot.
TEE =[3 8 9 12 3 2];
TEE1=[98 45 32 45 1 8];
TEE2(1,:)=TEE;
TEE2(2,:)=TEE1;
figure
hold on
plot(TEE)
plot(TEE1)
hold off
figure
%% Plot the transpose of the array
plot(TEE2.')
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!