⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dim.m

📁 CheckMate is a MATLAB-based tool for modeling, simulating and investigating properties of hybrid dyn
💻 M
字号:
function n = dim(POLY)

% Dimension of the space containing a polyhedron object 
%
% Syntax:
%   "n = dim(poly)"
%
% Description:
%   "dim(poly)" returns the dimension of the space in which "poly" resides. 
%
% Examples:
%   Given a polyhedron object, "poly" representing a square in the x3 = 0
%   plane with corners at (x1,x2) pairs (2,1), (2,3), (4,3), and (4,1) 
%
%
%
%   "n = dim(poly)"
%
%
%
%   returns 
%
%
%
%   "n = 3"
%
%
%
% See Also:
%   polyhedron

if ~isempty(POLY.CE)
  n = size(POLY.CE,2);
elseif ~isempty(POLY.CI)
  n = size(POLY.CI,2);
else
  n = 0;
end

⌨️ 快捷键说明

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