How to plot a plot a function that contains itself
3 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Star Strider
2022-11-10
编辑:Star Strider
2022-11-10
syms a b y
Eqn = y == a * log(b*y)
Eqn = isolate(Eqn, y)
This will produce one value for y, so I¹m not certain that actually goes in the direction you want it to.
.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!