Syms, fit and integral in a standalone app
Show older comments
Hi,
I have the following code that I want to compile in a standalone app :
syms z;
K_fit = fit(app.gdist,gK,'linearinterp');
func1= @(app,z)(K_fit(z).*(((z.^1-app.gdist(i,1)))));
gpot1(counter,1)=2*app.cz*integral(@(z)func1(app,z), app.gdist(i,1),max(app.gdist),'ArrayValued',true);
Can you tell how to rewrite it so that it doesn't use syms and is deployabe in a standalone app?
Thanks.
Accepted Answer
More Answers (0)
Categories
Find more on Develop Apps Using App Designer 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!