Setting an equation equal to another variable (rearranging) in 2012b

I took an integral in matlab and this was the output:
s =
3*5^(1/2)*t
or s = 3.
I want to rearage this equation in terms of .
I tried:
t = solve(s,t)
but the output is:
t1 =
0
I would greatly appreciate any insight!
p.s. I do have symbolic toolbox and have set:
syms t s t1

 채택된 답변

Stephan
Stephan 2019년 9월 16일
편집: Stephan 2019년 9월 16일
syms s t
eq = s == 3*5^(1/2)*t
sol_t = solve(eq,t)
Beginning from 2017a you can use isolate.

추가 답변 (0개)

카테고리

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

제품

릴리스

R2012b

질문:

2019년 9월 16일

댓글:

2019년 9월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by