lsqcurvefit of a summation function where the parameter to evaluate is the last index of the summation (so an integer)
Ältere Kommentare anzeigen
Hi, I'm doing the fit of a function substantially similar to this one: f(x)= sum ( exp(1i * x * jz * c) ) , where: - sum represent the summation over the index jz - x is the variable, - jz = 1,2,...,nz where nz is a parameter to find using the fit, - c is another parameter. The complete function is the product of several series of this type.
In the curve fitting tool I can't enter a summation neither using symsum nor using an iteration. Moreover I can't use nz as a parameter.
Any idea?
Many thanks, Gianluca
Akzeptierte Antwort
Weitere Antworten (4)
Walter Roberson
am 27 Mai 2011
f = @(x) sum(exp(1i.*c.*x.*(1:nz)))
1 Kommentar
gianluca messina
am 27 Mai 2011
Arnaud Miege
am 27 Mai 2011
0 Stimmen
I'm not sure this is something that can be done with the Curve Fitting Toolbox. I think a better approach would be to use the Optimization Toolbox with one of the Least Squares (Curve Fitting) functions, such as lsqcurvefit.
HTH,
Arnaud
1 Kommentar
Oleg Komarov
am 30 Mai 2011
Your x is nz.
@(nz,xdata) ...
gianluca messina
am 30 Mai 2011
0 Stimmen
1 Kommentar
Oleg Komarov
am 30 Mai 2011
Please post the code snippet you're using (preferably editing this question) and the whole error message. Additional info about the size of your inputs would be beneficial.
Kategorien
Mehr zu Solver Outputs and Iterative Display finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!