Fseriest.m
上传用户:loeagle
上传日期:2013-03-02
资源大小:1236k
文件大小:0k
源码类别:

通讯编程文档

开发平台:

Matlab

  1. function xx=fseriest(funfcn,t,n,tol,p1,p2,p3)
  2. %FSERIEST  Returns the Fourier series coefficients.
  3. %    XX=FSERIEST(FUNFCN,T,N,TOL,P1,P2,P3)
  4. %    funfcn=The given function in an m-file.
  5. %    It can depend on up to three parameters
  6. %    p1,p2, and p3. The function is given
  7. %    over one period.
  8. %    t=the period.
  9. %    n=the number of coefficients returned.
  10. %    p1,p2,p3=parameters of funfcn. 
  11. %    tol=the error level.
  12. xx=fseries(funfcn,0,t,n,tol,p1,p2,p3);