Equations and systems solver - MATLAB solve
www.mathworks.com › help › symbolicWhen solving for multiple variables, it can be more convenient to store the outputs in a structure array than in separate variables. The solve function returns a structure when you specify a single output argument and multiple outputs exist. Solve a system of equations to return the solutions in a structure array.
MATLAB - Algebra
https://www.tutorialspoint.com/matlab/matlab_algebra.htmIf the equation involves multiple symbols, then MATLAB by default assumes that you are solving for x, however, the solve function has another form − solve(equation, variable) where, you can also mention the variable. For example, let us solve the equation v – u – 3t 2 = 0, for v. In this case, we should write − solve('v-u-3*t^2=0', 'v')