www.pudn.com > upf_demos.rar > bsffun.m
function [y] = bsffun(x,t);
% PURPOSE : Process model function.
% INPUTS : - x: The evaluation point in the domain.
% OUTPUTS : - y: The value of the function at x.
% AUTHORS : Nando de Freitas (jfgf@cs.berkeley.edu)
% Rudolph van der Merwe (rvdmerwe@ece.ogi.edu)
% DATE : 10 March 2000
if nargin < 2, error('Not enough input arguments.'); end
y = x;