x = [70.90 70.17 70.25 67.98 63.82]; y = [74.21 69.63 69.74 68.03 66.16]; x,y represents experimental and numerical results respectively . Using this result I want to make a parity plot. I have enclosed the model plot for this purpose. Can anyone explain me how to make this type of plot with matlab code.

Answers (2)

KALYAN ACHARJYA
KALYAN ACHARJYA on 2 Jun 2019
Edited: KALYAN ACHARJYA on 2 Jun 2019
#Do change
x=[70.90 70.17 70.25 67.98 63.82];
y=[74.21 69.63 69.74 68.03 66.16];
plot(x,y,'*');
hold on;
plot([10 100],[10 100]); %Set the values accordingly
plot([10 100],2*[10 100]); % Multiply as per upper %
plot([10 100],0.5*[10 100]); %% Multiply as per Lower %

1 Comment

KALYAN ACHARJYA
KALYAN ACHARJYA on 2 Jun 2019
For those three lines as shown in your attched figure, you can change values accordingly.

Sign in to comment.

Deva Narayanan
Deva Narayanan on 2 Jun 2019

0 votes

@KALYAN ACHARJYA, can you explain me ??why u r use last three lines of your code

1 Comment

KALYAN ACHARJYA
KALYAN ACHARJYA on 2 Jun 2019
Edited: KALYAN ACHARJYA on 2 Jun 2019
This is answer section, pls delete. I have responsed your question in commnet section.

Sign in to comment.

Tags

Asked:

on 2 Jun 2019

Edited:

on 2 Jun 2019

Community Treasure Hunt

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

Start Hunting!