Effacer les filtres
Effacer les filtres

Plotting an inequality of two related variable in a linear space

9 vues (au cours des 30 derniers jours)
Sabrina Garland
Sabrina Garland le 27 Mar 2022
Commenté : Sabrina Garland le 27 Mar 2022
I want to plot the inequality with two variables a and b such that a>b. Variables a and b have values between 0 and 1. Inequality I want to plot is - 8*a^6+3*(a^3)(b^2)+sqrt(2*(a^5)(b)+7*(a^2)(b^4))>=a^3/b^2. I want the shaded region where inequality is satisfied. How can I plot this in matlab? I am new to graphing and any sort of help will be really appreciated.

Réponse acceptée

Torsten
Torsten le 27 Mar 2022
Try
f = @(a,b)a^3/b^2-(- 8*a^6+3*(a^3)(b^2)+sqrt(2*(a^5)(b)+7*(a^2)(b^4)));
fimplicit(f,[0 1 0 1])
I didn't use it until now, but maybe
is also an option.
  6 commentaires
Torsten
Torsten le 27 Mar 2022
Modifié(e) : Torsten le 27 Mar 2022
f = @(a,b)a.^3./b.^2-(- 8*a.^6+3*(a.^3).*(b.^2)+sqrt(2*(a.^5).*b+7*(a.^2).*(b.^4)));
I think you also forgot several multiplication signs in your function definition.
Sabrina Garland
Sabrina Garland le 27 Mar 2022
I figured my mistake. It worked! Thanks a ton

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by