From: Matt J on
"Matt J " <mattjacREMOVE(a)THISieee.spam> wrote in message <ho2r0u$eqf$1(a)fred.mathworks.com>...
> "Frank Lee" <werwer(a)wer.com> wrote in message <ho0fcd$41l$1(a)fred.mathworks.com>...
> > Hello,
> >
> > I need to hand this assignment to my teacher tomorrow.
> > The problem is that I don't know how to make this matlab file.
> > Can somebody help?
> >
> > http://img716.imageshack.us/img716/7212/47887566.png
> =============
>
> Isn't tomorrow (now today) Saturday? Your teacher really won't wait until Monday?
>
> Anyway, to be fair, you didn't actually ask us to do the homework for you, only that we help. So fine. Consider this
>
> >>help vander
> >>help inv
>
> With these, I think you'll find that the homework is very easy.
>
> If your deadline really was today, it probably won't matter by now...
============================

One more thing. You should pass a message to your teacher from us that (s)he is perpetuating some really bad practices. In your homework, you are asked to obtain the polynomial coefficient vector coeff by multiply ylist by the inverse of the matrix F.

A better and more efficient way is to do

coeff=F\ylist(:)

Don't do this it this way in your homework, though. You'd be violating your teacher's instructions...