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
Torsten 2022년 3월 29일

1 개 추천

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에 대해 자세히 알아보기

태그

질문:

2022년 3월 29일

답변:

2022년 3월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by