How to plot two column vector on the same scale

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)

 Respuesta aceptada

KSSV
KSSV el 17 de Oct. de 2017
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 comentarios

Mekala balaji
Mekala balaji el 17 de Oct. de 2017
Sir,
I want to specify two line with different symbol &color and join by dotted line
figure
hold on
plot(data(:,1),'*-r')
plot(data(:,2),'O-b')
legend('legend','model')
REad about plot
Mekala balaji
Mekala balaji el 17 de Oct. de 2017
Thanks Sir.

Iniciar sesión para comentar.

Más respuestas (0)

Preguntada:

el 17 de Oct. de 2017

Comentada:

el 17 de Oct. de 2017

Community Treasure Hunt

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

Start Hunting!

Translated by