How to plot a plot a function that contains itself

Hello,
I need to plot y = a .* log(b.*y), where a and b are known vectors. What would be the best way to go about this.
Thank you

 채택된 답변

Star Strider
Star Strider 2022년 11월 10일
편집: Star Strider 2022년 11월 10일
One option is to use the isolate function (essentially equivalent to solve) —
syms a b y
Eqn = y == a * log(b*y)
Eqn = 
Eqn = isolate(Eqn, y)
Eqn = 
Where ω is the wrightOmega function.
This will produce one value for y, so I¹m not certain that actually goes in the direction you want it to.
.

댓글 수: 2

This is very helpful. Thank you!
As always, my pleasure!

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Mathematics에 대해 자세히 알아보기

제품

릴리스

R2021b

태그

질문:

2022년 11월 10일

댓글:

2022년 11월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by