Recent content by F.Moisy

  1. F

    MATLAB Fitting a Curve to Data: MATLAB vs Excel

    Fit in matlab You can also try Ezyfit, a free curve fitting toolbox for Matlab: www.fast.u-psud.fr/ezyfit In your case just type showfit('y=20-a*10*log(x)') if your data are plotted in a figure, or f = ezfit(x,y,'y=20-a*10*log(x)') if your data are stored into the vectors x,y.