Search found 3 matches

by hmalissa
Tue Apr 10, 2018 12:38 pm
Forum: General forum
Topic: multifrequency esfit?
Replies: 8
Views: 10515

Re: multifrequency esfit?

You can do that, without too much difficulty. First you create a new function such as function y = multifreq(Sys,Exp) % you could also hardcode some of this Exp.Range = [Exp.f(1) Exp.f(2)]; Exp.nPoints = Exp.n(1); Exp.mwFreq = Exp.mw(1); freq1 = pepper(Sys,Exp); Exp.Range = [Exp.f(3) Exp.f(4)]; Exp...
by hmalissa
Tue Oct 31, 2017 7:27 pm
Forum: General forum
Topic: Confidence Limits from esfit
Replies: 1
Views: 1215

Confidence Limits from esfit

Is there a way to determine the confidence limits for the fit parameters from esfit?
For the Levenberg-Marquardt algorithm these can be determined from the covariance matrix, but how do I access that from esfit?
Thanks a lot,

Hans
by hmalissa
Mon Oct 31, 2016 10:50 am
Forum: General forum
Topic: multifrequency esfit?
Replies: 8
Views: 10515

Re: multifrequency esfit?

You can do that, without too much difficulty. First you create a new function such as function y = multifreq(Sys,Exp) % you could also hardcode some of this Exp.Range = [Exp.f(1) Exp.f(2)]; Exp.nPoints = Exp.n(1); Exp.mwFreq = Exp.mw(1); freq1 = pepper(Sys,Exp); Exp.Range = [Exp.f(3) Exp.f(4)]; Exp...