division of cfit objects

조회 수: 1 (최근 30일)
Hsinho Huang
Hsinho Huang 2019년 6월 16일
답변: Hsinho Huang 2019년 6월 16일
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

채택된 답변

Walter Roberson
Walter Roberson 2019년 6월 16일

추가 답변 (1개)

Hsinho Huang
Hsinho Huang 2019년 6월 16일
Thanks! I could obtain the P values.

카테고리

Help CenterFile Exchange에서 Smoothing and Denoising에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by