MATLAB Function Reference |
Description
一個部分路徑(partialpath)是對應到 MATLAB 路徑 (MATLABPATH,像是
c:/matlab/toolbox/matlab/)
路徑名稱, 可被用於找出私人檔案, 而這些通常都會隱藏,
或是在當找到的檔案不只一個時限制它 (****不確定...原文:or to restrict the search for files when more
than one file with the given name exists ****).
部分路徑(partialpath)包含由完整路徑名稱的最後一個部分, 或是最後數個部分. 舉例來說, matfun/trace
, private/children
,
inline/formula
,和demos/clown.mat
都是合法的部分路徑名稱. 在方法目錄中的
@
是可有可無的, 所以funfun/inline/formula
也是合法的部分路徑名稱.
部分路徑名稱使得要尋找工具盒或是在你路徑上的 MATLAB 相關檔案變得相當輕便, 不受MATLAB在那安裝的限制.
許多命令接受 "部分路徑名稱" 而不接受 "完整路徑名稱", 而這命令包含了
help
,type
,load
,exist
,what
,which
,edit
,dbtype
,dbstop
,dbclear
, andfopen
Examples
what funfun/inline M-files in directory matlabroot\toolbox\matlab\funfun\@inline argnames disp feval inline subsref vertcat cat display formula nargin symvar char exist horzcat nargout vectorize which funfun/inline/formula matlabroot\toolbox\matlab\funfun\@inline\formula.m % inline method
See
Also
pareto | pascal |