How to interpolate pressure
    2 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
I have Pressure data (Attached file)
and I want to interpolate pressure by 1m, from 5m to 700m.
How can I make the code?
I know interp1, but i can't make the code properly
1 commentaire
  Jan
      
      
 le 8 Juin 2022
				You have asked for a line fitting the data, but removed the question during I've posted an answer:
L    = linspace(5, 700, length(P));
poly = polyfit(L, P, 1);
PP   = polyval(poly, L);
plot(L, P, '.r', L, PP, 'b');
Réponse acceptée
  KSSV
      
      
 le 19 Mai 2022
        load('matlab_Pressure.mat')
L = linspace(5,700,length(PP)) ; 
Li = min(L):max(L) ;
PPi = interp1(L,PP,Li) ;
plot(L,PP,'.r',Li,PPi,'b')
0 commentaires
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Interpolation 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!