Solving an equation with multiple variables in MATLAB

Hello,
I'm trying to solve an equation using MATLAB that has multiple variables.
I have the variables
The equation I am trying to solve is
where is the variable I am trying to solve for.
in MATLAB I tried to use syms in order to solve this:
syms Ti Tsurr Ts k E x L
eqn = -k(Ts - Ti)/L -h(Ts - Tsurr) - E*x*(Ts^4 - Tsurr^4) == 0
ans = solve (eqn, Ts)
But I get an error message like this:
Error using sym/subsindex (line 864)
Invalid indexing or function definition. Indexing must follow MATLAB indexing. Function arguments must be
symbolic variables, and function body must be sym expression.
Error in sym/subsref (line 909)
R_tilde = builtin('subsref',L_tilde,Idx);
How do I go about solving this equation in MATLAB? Is it correct to use the syms function for this?
Is it better to simply define each variable's numerical value (except )and then use syms with only as the variable?

Answers (1)

syms E h k L Ti Tsurr Ts x
eqn = -k*(Ts - Ti)/L - h*(Ts - Tsurr) - E*x*(Ts^4 - Tsurr^4) == 0
eqn = 
sol_implicit = solve (eqn, Ts)
sol_implicit = 
sol_explicit = simplify(solve(eqn, Ts, 'MaxDegree', 4))
sol_explicit = 

Categories

Products

Release

R2021a

Asked:

on 15 Sep 2021

Answered:

on 15 Sep 2021

Community Treasure Hunt

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

Start Hunting!