?? plot.m
字號:
function plot(con,color)% Plot a linear constraint object %% Syntax:% "plot(con)"%% "plot(con,color)"%% Description:% "plot(con)" plots the linear constraint object "con" in blue.% "plot(con,color)" plots "con" in the color specified in the rgb row% vector "color=[r g b]". %% Note:% "@linearcon/plot" first converts the linear constraint object to a% polyhedron object, and then uses "@polyhedron/plot" to create the% figure.%% See Also:% linearcon,plotif nargin == 1 color = [0 0 1];endplot(polyhedron(con),color)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -