ffun.m
上传用户:hfch80
上传日期:2007-10-25
资源大小:3637k
文件大小:0k
源码类别:

行业发展研究

开发平台:

Matlab

  1. function [y] = ffun(x,t);
  2. % PURPOSE : Process model function.
  3. % INPUTS  : - x:  The evaluation point in the domain.
  4. % OUTPUTS : - y: The value of the function at x.
  5. % AUTHORS  : 
  6. % DATE     : 
  7. if nargin < 2, error('Not enough input arguments.'); end
  8. beta = 0.5;                 % Autoregressive parameter.
  9. y = 1 + sin(4e-2*pi*t) + beta*x;