How can I export a CFIT class variable to Excel?
5 views (last 30 days)
Show older comments
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
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});
0 Comments
More Answers (0)
See Also
Categories
Find more on Interpolation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!