フィルターのクリア

How to get mupad to plot solution points for inequalities?

3 ビュー (過去 30 日間)
Tom
Tom 2013 年 9 月 23 日
編集済み: Christopher Creutzig 2014 年 5 月 21 日
I am new to MuPAD and have just figured out how to graph inequalities using, for example:
plot(plot::Inequality([-x+y>=-2,x<=4],
x = -10..10, y = -10..10))
How do I get it to plot or print the solution/intersection points, i.e. (4,2) on the same graph or in the command line?
Am using MATLAB 2013a.
Thanks!
  1 件のコメント
Brian
Brian 2014 年 1 月 9 日
編集済み: Brian 2014 年 1 月 9 日
I don't think you can type it in the command line. the way I would do it is type >> mupad in the command window, and then!!! type
"plot(plot::Inequality([fill in]))" in the mupad window

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

回答 (1 件)

Christopher Creutzig
Christopher Creutzig 2014 年 3 月 31 日
編集済み: Christopher Creutzig 2014 年 5 月 21 日
The intersection of your boundaries will be on the boundaries (I know, not surprising), so you can simply say solve([-x+y = -2, x = 4]). If you want to include them in the plot, try something like this:
S := solve([-x+y = -2, x=4], [x, y], VectorFormat):
plot(plot::Inequality([-x+y >= -2, x <= 4],
x = -10..10, y = -10..10),
map(S, plot::Point2d, PointSize = 2, Color = RGB::Blue))
  1 件のコメント
Tom
Tom 2014 年 3 月 31 日
Better late than never! Thank you for your answer. Unfortunately I get the message - "Error: An equation is expected. [rhs]" when trying to plot.

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

カテゴリ

Help Center および File Exchange2-D Function Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by