Use solve function and return with [0*1 sym]
이전 댓글 표시
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.
답변 (1개)
Torsten
2022년 3월 29일
syms s w r y b
eq = s-((s - w)*(r + 1)^(1 - 1/y))/b^(1/y)==0 ;
sol = solve(eq,s)
카테고리
도움말 센터 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!