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

📄 isfeasible.m

📁 一个matlab的将军模型
💻 M
字号:
function result = isfeasible(a,b)

% Determine whether or not the intersection of two linear constraint objects
% exists.
%
% Syntax:
%   "C = isfeasible(a,b)"
%
% Description:
%   "isfeasible(a,b)" returns a "0" if the intersection of "a" and "b" is
%   empty, otherwise, "isfeasible(a,b)" returns "1".
%
% Examples:
%   Given two linear constraint objects, "a" representing a square in the
%   x3 = 0 plane with corners at (x1,x2) pairs (2,1), (2,3), (4,3), and
%   (4,1) and "b", another square in the same plane with corners at (2,1),
%   (2,2), (3,1), and (3,2), 
%
%
%
%   "C = isfeasible(a,b)"
%
%
%
%   returns "1".
%
% See Also:
%   linearcon,and

if isa(b,'polyhedron')
  b = linearcon(b);
end

if isa(b,'linearcon')
  c = intersect(a,b,0);
else
  c = linearcon;
end

result = ~isempty(c);

⌨️ 快捷键说明

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