division of cfit objects

6 vues (au cours des 30 derniers jours)
Hsinho Huang
Hsinho Huang le 16 Juin 2019
Hi,
I am writing to ask how to do division of two cfit type objects.
From data (x1,y1) and (x2,y2), I obtained two fit curves f1 and f2. Then, I calculated the first derivative D of the curve f2 at each data points of x2. Finally, I wanted to calcuate the P by using D./f1. However, I got this error message : Undefined function 'rdivide' for input arguments of type 'cfit'.
Could you please let me know how I could code the calculation of P correctly?
f1=fit(x1,y1,'smoothingspline','Normalize','on')
f2=fit(x2,y2,'smoothingspline','Normalize','on')
D=differentiate(f2,x2)
P=D./f1

Réponse acceptée

Walter Roberson
Walter Roberson le 16 Juin 2019
P = D./f1(x2);

Plus de réponses (1)

Hsinho Huang
Hsinho Huang le 16 Juin 2019
Thanks! I could obtain the P values.

Catégories

En savoir plus sur Fit Postprocessing 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!

Translated by