help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Curve Fitting and Plotting


From: Michael Creel
Subject: Re: Curve Fitting and Plotting
Date: Fri, 26 Sep 2008 15:36:32 +0200

There are _many_ options, depending on what kind of fit you would
like. You can get a nonparametric (kernel regression) fit to data
distributed randomly around a straight line using something like

x = (1:100)/100';
y = x + randn(100,1);
f = kernel_regression(x,y,x);
plot(x, [y f])

This requires the econometrics package in Octave Forge. For this data,
the ols fit (do help ols for more info) would be a better choice,
though. Just an example that a lot of options are available.

Michael

On Fri, Sep 26, 2008 at 12:32 PM, Kearan Mc Pherson
<address@hidden> wrote:
> Hi
>
> I am new to Octave and Gnuplot. I need help on fitting a curve through a
> data.dat file, that contains values x an y in column format.
> Any ideas where to start?
>
> Kind regadrs
>
> _______________________________________________
> Help-octave mailing list
> address@hidden
> https://www-old.cae.wisc.edu/mailman/listinfo/help-octave
>
>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]