How to plot??
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
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.
0 commentaires
Réponses (2)
  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
      
      
 le 2 Juin 2019
				For those three lines as shown in your attched figure, you can change values accordingly.
  Deva Narayanan
 le 2 Juin 2019
        1 commentaire
  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.
Voir également
Catégories
				En savoir plus sur Annotations dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

