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

 Respuesta aceptada

Star Strider
Star Strider el 10 de Nov. de 2022
Editada: Star Strider el 10 de Nov. de 2022
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 comentarios

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Mathematics en Centro de ayuda y File Exchange.

Productos

Versión

R2021b

Etiquetas

Preguntada:

el 10 de Nov. de 2022

Comentada:

el 10 de Nov. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by