% Approximate f(z) = sin(6 pi z), % by phi(j,z) = z^j, j=0:5, % on the real unit interval. % clear % format long nomf = 'fsin6pix'; a=0 ; b=1 ; n=5 ; %degree np=200 ; % grid iter=20; % coefficients de x^n , x^(n-1) , ... ,1 : coeff=remezp(nomf,a,b,n,iter,np);