[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Help-gsl] Non-Negative Least Squares
From: |
Fred Perras |
Subject: |
Re: [Help-gsl] Non-Negative Least Squares |
Date: |
Mon, 28 Jan 2013 10:48:40 -0500 |
It's funny that you mentioned that since I had the same problem earlier
this morning. I implemented it simply by adding these lines in the do
while loop in the example:
for(int j=0; j<p; j++)
gsl_vector_set(s->x, j, fabs(gsl_vector_get(s->x, j)));
It may not be optimal but it works.
Fred
On Mon, Jan 28, 2013 at 10:39 AM, Calvin Morrison <address@hidden>wrote:
> Hi,
>
> I know that GSL can do linear regression and least squares fitting,
> but I don't see anything about fitting to non-negative least squares.
>
> Any ideas? Can I do this with GSL?
>
> Thank you,
>
> Calvin
>
>