How to plot two column vector on the same scale

조회 수: 4 (최근 30일)
Mekala balaji
Mekala balaji 2017년 10월 17일
댓글: Mekala balaji 2017년 10월 17일
Hi,
I want to plot to compare actual&modle values on the same scale with titles:
Actual model
1.22 1.01
2.31 2.31
4.12 4.13
1.74 1.78
1.30 1.04
3.13 3.13
3.76 3.76
4.12 4.11
But, I am trying to plot, I am unable to plot (because I don't have x-axis values, my X-axis is just a data count)

채택된 답변

KSSV
KSSV 2017년 10월 17일
data = [1.22 1.01
2.31 2.31
4.12 4.13
1.74 1.78
1.30 1.04
3.13 3.13
3.76 3.76
4.12 4.11];
plot(data)
legend('legend','model')
It doesn't matter, you can plot w.r.t to indices.
  댓글 수: 3
KSSV
KSSV 2017년 10월 17일
figure
hold on
plot(data(:,1),'*-r')
plot(data(:,2),'O-b')
legend('legend','model')
REad about plot
Mekala balaji
Mekala balaji 2017년 10월 17일
Thanks Sir.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by