How to fit a curve to a power spectrum curve which follows power law
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How to fit a curve to a power spectrum curve which follows power law
0 Commenti
Risposte (1)
Mona Mahboob Kanafi
il 13 Ago 2013
Modificato: Mona Mahboob Kanafi
il 14 Ago 2013
Hi,
Go to cftool, then select your data and choose power; set number of terms to '1' if it follows this equation: y = a*x^b
Also you can do this on command window:
f = fit(x,y,'power1');
and then if you want the parameters just use this command:
coefs = coeffvalues(f);
0 Commenti
Vedere anche
Categorie
Scopri di più su Linear and Nonlinear Regression in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!