I need to do fitting with a integral function and a data experimt
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
function f= integral(par,tdata);
tmax=length(tdata);
a=par(1);
for i=1:tmax;
tk=tdata(i);
f_s=@(s)(a.*s.^2);
f(i)=quadv(@(m)f_s(tk),0,1);
end
Risposte (0)
Questa domanda è chiusa.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!