How can I export a CFIT class variable to Excel?

5 views (last 30 days)
I am using the Curve Fitting Toolbox to create generate polynomials of the type CFIT. I want to export the polynomial and the coefficients outside MATLAB such that other users who do not have MATLAB can look at the polynomial.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 2009
You can export the polynomial and the coefficients using the dot operator and getting the polynomial expression as an array of characters:
% create a CFIT class variable
f = fittype('a*x^2+b*exp(n*x)')
c = cfit(f,1,10.3,-1e2)
%get the polynomial expression as a string array
p = fevalexpr(f);
%export the polynomial and its coefficients to an Excel sheet
xlswrite('example',{p;c.a;c.b;c.n});

More Answers (0)

Categories

Find more on Interpolation in Help Center and File Exchange

Tags

Products


Release

R2007a

Community Treasure Hunt

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

Start Hunting!