2013-02-25 677 views
1

我想用matlab繪製一些不等式。 我使用這個代碼:如何在matlab中使用(plot :: Inequality)繪製不等式

figure; 
plot(plot::Inequality(x^2 + y^2 < 1, x = -1.5..1.5, y = -1.5..1.5)); 

但我得到這個錯誤:

plot(plot::Inequality(x^2 + y^2 < 1, x = -1.5..1.5, y = -1.5..1.5)) 
     | 
Error: Unexpected MATLAB operator. 

我已閱讀本manual。 和更多的東西:

>> version 
ans = 
8.0.0.783 (R2012b) 
+1

繪製不等式的相關問題:[如何繪製不等式](http://stackoverflow.com/questions/11345838/how-to-plot-inequalities) – 2013-02-25 15:25:33

回答

2

plot::Inequality是Matlab的象徵性的工具箱的一部分,從MuPAD中調用。
你不能像普通的命令那樣使用它。