Search found 3 matches
- Tue Apr 10, 2018 12:38 pm
- Forum: General forum
- Topic: multifrequency esfit?
- Replies: 8
- Views: 12445
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...
- Tue Oct 31, 2017 7:27 pm
- Forum: General forum
- Topic: Confidence Limits from esfit
- Replies: 1
- Views: 1702
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
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
- Mon Oct 31, 2016 10:50 am
- Forum: General forum
- Topic: multifrequency esfit?
- Replies: 8
- Views: 12445
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...