bsffun.m

来自「% PURPOSE : Demonstrate the differences 」· M 代码 · 共 21 行

M
21
字号
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 2000if nargin < 2, error('Not enough input arguments.'); endy = x; 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?