i want to solve a equation in a algorithm. this equation is ('x-sin(x)=b') .in this equation 'b' calculated of previous step. for example b=0.45.
when i run this, the answer is empty sym: 0-by-1.
but when I run (x-sin(x)=0.45) the answer is correct, means that this equation has numeric answer.
please help me to run this algorithm.
b=0.45
solve('x-sin(x)=b')
ans=
empty sym: 0-by-1
solve('x-sin(x)=0.45')
ans=1.4416

 채택된 답변

Steven Lord
Steven Lord 2019년 6월 9일

1 개 추천

Don't pass a char vector into solve. Build a symbolic equation and pass that into solve.
syms x
b = 0.45;
eq = x-sin(x) == b
sol = solve(eq)

댓글 수: 3

madhan ravi
madhan ravi 2019년 6월 9일
편집: madhan ravi 2019년 6월 9일
+1 , agree with Steven, passing a char vector was removed in later releases.
omid ghorbani
omid ghorbani 2019년 6월 10일
thank you so much.
this answer is a 1*1 symbol. how can i chang this answer to double type.
Sonja Glas
Sonja Glas 2019년 10월 16일
It should work with vpasolve instead of solve

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

질문:

2019년 6월 9일

댓글:

2019년 10월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by