(translator=pacific, ChineseSource=pacific-20020530-8\nargchk.html, EnglishSource=c:\matlabr12\help\techdoc\ref\nargchk.html)
MATLAB Function Reference    
nargchk

檢查輸入引數的數量

Syntax

Description

The nargchk 函式通常用來M檔案中來檢查是否傳入正確數量的引數。

msg = nargchk(low,high,number) number 的值低於 low 或高於 high時會回傳錯誤訊息。若在 lowhigh 之間(包括low和high的值), nargchk 回傳空矩陣。

Arguments

 nargchk 的輸入引數為:

low, high
輸入引數應傳入的最小和最大數量。
number
引數的實際傳入數量,可使用 nargin

Examples

給一個函式 foo:

輸入 foo(1) 產生:

See Also

nargin, nargout


 NaN nargin, nargout