Use solve function and return with [0*1 sym]
Mostrar comentarios más antiguos
Hi all,
I want to solve an eqation eq=s-((s - w)*(r + 1)^(1 - 1/y))/b^(1/y)==0
I use solve function in that:
solve(eq,s)
The Matlab, however, return with:
w: [0×1 sym]
y: [0×1 sym]
I just want to solve a basic mathmatical problem and don't know how to display the results that I want (put s on the left hand side of equation)
Thanks for your time.
Respuestas (1)
Torsten
el 29 de Mzo. de 2022
syms s w r y b
eq = s-((s - w)*(r + 1)^(1 - 1/y))/b^(1/y)==0 ;
sol = solve(eq,s)
Categorías
Más información sobre Symbolic Math Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!