简体   繁体   中英

How to plot Inequalities using (plot::Inequality) in matlab

I want to plot some Inequalities with matlab. I am using this code:

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

But i am getting this error:

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

I have read this manual . and something more:

>> version
ans =
8.0.0.783 (R2012b)

plot::Inequality is part of Matlab's symbolic toolbox and is invoked from within MuPAD .
You cannot use it like a regular command.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM