
Define symbolic variables in Matlab, build expressions, and compute derivatives and indefinite integrals. Specify the differentiation or integration variable when multiple variables exist to avoid wrong results.
Explore how Matlab handles symbolic polynomial expressions and polynomial vectors, converting between forms, pretty-printing, factoring, and expanding to reveal roots.
Explore how Matlab's simplify and collect functions reduce a complex expression to a neat polynomial by gathering like terms for a clearer overview.
Learn to substitute values into symbolic variables in matlab using subs, by defining x and y and f = x + y, and specifying which variable gets value in order.
Create a MATLAB function that computes an aquarium's volume from user-entered height, width, and length in centimeters, converts to liters, and prints the result with guidance.
Learn to solve ordinary differential equations numerically in MATLAB using ode45 as the first choice; set up the equation, integration range, and initial value with function handles and graphical output.
Solve a first-order differential equation in Matlab by defining the equation in a function and using a function handle with a solver, 0 to 10, initial condition 1, and plot.
This is an intermediate Matlab course for engineering and STEM-students and professionals in these areas. The course is focussing on two main topics: usage of symbolic variables and expressions and solving different kinds of equations in Matlab. Differential equations play a major role in engineering and natural sciences and this course is going to provide you the knowledge how Matlab can help you soling such equations (or systems) straigth-forward and numerically in Matlab.