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

조회 수: 5 (최근 30일)
Atom
Atom 2019년 7월 14일
편집: Atom 2019년 7월 14일
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.

채택된 답변

Rik
Rik 2019년 7월 14일
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
Atom
Atom 2019년 7월 14일
편집: Atom 2019년 7월 14일
Thanks a lot

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by