MATLAB - Algebra
https://www.tutorialspoint.com/matlab/matlab_algebra.htmSolving Basic Algebraic Equations in MATLAB The solve function is used for solving algebraic equations. In its simplest form, the solve function takes the equation enclosed in quotes as an argument. For example, let us solve for x in the equation x-5 = 0 solve ('x-5=0') MATLAB will execute the above statement and return the following result −
Solve Differential Equation - MATLAB & Simulink
www.mathworks.com › help › symbolicSolve the equation using dsolve. ySol (t) = dsolve (ode) ySol (t) = C1*exp (t^2/2) Solve Differential Equation with Condition In the previous solution, the constant C1 appears because no condition was specified. Solve the equation with the initial condition y (0) == 2. The dsolve function finds a value of C1 that satisfies the condition.