How to plot $40b^2x-9b​^2-60bx+72​b-144=0$

1 vue (au cours des 30 derniers jours)
Atom
Atom le 14 Juil 2019
Modifié(e) : Atom le 14 Juil 2019
How to get a (b,x)-plot of the curve where b varies from 0 to 10 and x varies from 0 to 1
I have tried the following
ezplot('40*b^2*x-9*b^2-60*b*x+72*b-144')
axis([0 10 0 1])
But not getting the curve after b=6.2. Is there any better way to plot it.

Réponse acceptée

Rik
Rik le 14 Juil 2019
It shouldn't be too hard to pry out x from this equation. Getting out b is a bit more tricky.
40b^2x-9b^2-60bx+72b-144=0
-9b^2+72b-144=-40b^2x+60bx
x=(-9b^2+72b-144)/(-40b^2+60b)
%in Matlab syntax:
Fun=@(b) (-9*b.^2+72*b-144)./(-40*b.^2+60*b);
  1 commentaire
Atom
Atom le 14 Juil 2019
Modifié(e) : Atom le 14 Juil 2019
Thanks a lot

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

Community Treasure Hunt

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

Start Hunting!

Translated by