📄 subsref.m
字号:
function wp = subsref(M,S)
%SUBSREF Evaluate map by subscript notation.
% M(ZP), where M is a SC map and ZP is a vector of points in the
% canonical domain of the map, returns the image of the points in ZP.
%
% This just a synonym for EVAL(M,ZP).
%
% See also EVAL, SCMAP.
% Copyright 1998 by Toby Driscoll.
% $Id: subsref.m 7 1998-05-10 04:37:19Z tad $
if length(S) == 1 & strcmp(S.type,'()')
wp = eval(M,S.subs{1});
else
error('Only syntax for SCMAP is a single parenthesized subscript.')
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -