Curve fitting with compiler.build.standaloneApplication
Show older comments
This is probably simple question but i do not get what is happening
i do compile my code using
compiler.build.standaloneApplication('my_code.m')
code is extreamly simple
load census;
f = fit(cdate,pop,'poly3','Normalize','on','Robust','Bisquare')
when i try to run it on machine that has matlab compiler runtime i'm getting
Unrecognized function or variable 'fit'
MATLAB:UndefinedFunction
Was under impression that toolbox Curve Fitting is supported and should be included.
1 Comment
Walter Roberson
on 4 Nov 2024
Moved: Walter Roberson
on 4 Nov 2024
Experiment with adding
%#function fit
to the code
Accepted Answer
More Answers (0)
Categories
Find more on Introduction to Installation and Licensing 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!