How to plot??

3 vues (au cours des 30 derniers jours)
Deva Narayanan
Deva Narayanan le 2 Juin 2019
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.

Réponses (2)

KALYAN ACHARJYA
KALYAN ACHARJYA le 2 Juin 2019
Modifié(e) : KALYAN ACHARJYA le 2 Juin 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 commentaire
KALYAN ACHARJYA
KALYAN ACHARJYA le 2 Juin 2019
For those three lines as shown in your attched figure, you can change values accordingly.

Connectez-vous pour commenter.


Deva Narayanan
Deva Narayanan le 2 Juin 2019
@KALYAN ACHARJYA, can you explain me ??why u r use last three lines of your code
  1 commentaire
KALYAN ACHARJYA
KALYAN ACHARJYA le 2 Juin 2019
Modifié(e) : KALYAN ACHARJYA le 2 Juin 2019
This is answer section, pls delete. I have responsed your question in commnet section.

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by