size.m

来自「计算动力学系统的分岔图」· M 代码 · 共 13 行

M
13
字号
function [m,n] = size(x)
% Size of adtayl object.
% It comprises the lengths of the dimensions *excluding* the Taylor
% coefficient dimension.
siz = size(x.tc);
if nargout<=1
  m = siz(1:end-1);
elseif nargout==2
  m = siz(1); n = siz(2);
else
  error('Call with >2 outputs not allowed for adtayl size')
end

⌨️ 快捷键说明

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