I am given set of five linear inequalities how to plot the graph showing the common area

10 ビュー (過去 30 日間)
How can I draw 2D plot for these set of linear inequalities with ki representing x-axis and kd representing y-axis.The common area that is a convex polygon formed by these inequalities must be seen in the plot.The polygon should be in a way represented by picture below.

採用された回答

Matt J
Matt J 2021 年 2 月 2 日
編集済み: Matt J 2021 年 2 月 2 日
You can use lcon2vert,
to obtain the vertices V of the region. Then use plot(polyshape(V)).
A=[1,0;
1,-0.2699;
1,-0.3666;
-1,+3.5358
1,-13.5777];
b=[0,-4.6836,-10.0797,-3.912,140.2055].';
V=lcon2vert(A,b);
plot(polyshape(V))
  13 件のコメント
Laxmi Akshaya Thela
Laxmi Akshaya Thela 2021 年 2 月 7 日
How to apply grids for a 3d plot, my 3d plot is not very clear because of the small values.So,I want to apply grid to my plot.Please help me out with this issue.

サインインしてコメントする。

その他の回答 (1 件)

Matt J
Matt J 2021 年 2 月 3 日
There is also this File Exchange submission,
It does not require the vertices to be precomputed, and works for either 2D or 3D.

カテゴリ

Help Center および File ExchangePolygons についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by