Instructional Video7:58
Professor Dave Explains

Numerical Methods for Solving Differential Equations

9th - Higher Ed
Solving differential equations can get pretty tricky, but in this modern age we have some tools that can be very useful. We can use computers to carry out sophisticated numerical methods that can solve any differential equation, no...
Instructional Video4:00
Curated Video

MATLAB Programming Tutorials | Loops, Arrays, Classes, Control Statements & More : Basic Math

9th - Higher Ed
Welcome to our MATLAB Programming Tutorial series! These videos are designed to take you from beginner to advanced concepts in MATLAB, one of the most popular software platforms for engineering, data science, and mathematical computing....
Instructional Video11:24
Curated Video

MATLAB Programming Tutorials | Loops, Arrays, Classes, Control Statements & More: ifelseif

9th - Higher Ed
Welcome to our MATLAB Programming Tutorial series! These videos are designed to take you from beginner to advanced concepts in MATLAB, one of the most popular software platforms for engineering, data science, and mathematical computing....
Instructional Video3:36
Curated Video

Matlab Functions1: Functions with Input Parameters

9th - Higher Ed
Welcome to our MATLAB Programming Tutorial series! These videos are designed to take you from beginner to advanced concepts in MATLAB, one of the most popular software platforms for engineering, data science, and mathematical computing....
Instructional Video7:38
Curated Video

MATLAB Programming Tutorials | Loops, Arrays, Classes, Control Statements & More

9th - Higher Ed
Welcome to our MATLAB Programming Tutorial series! These videos are designed to take you from beginner to advanced concepts in MATLAB, one of the most popular software platforms for engineering, data science, and mathematical computing....
Instructional Video2:56
Curated Video

Matlab Functions: Multiple Input Parameters and Multiple Return Values

9th - Higher Ed
Welcome to our MATLAB Programming Tutorial series! These videos are designed to take you from beginner to advanced concepts in MATLAB, one of the most popular software platforms for engineering, data science, and mathematical computing....
Instructional Video2:35
Curated Video

Matlab Functions: Anonymous / Single-Line Functions

9th - Higher Ed
Welcome to our MATLAB Programming Tutorial series! These videos are designed to take you from beginner to advanced concepts in MATLAB, one of the most popular software platforms for engineering, data science, and mathematical computing....
Instructional Video3:52
Curated Video

MATLAB: 2D Matrix

9th - Higher Ed
Learn how to initialize and access data in a 2D Matrix in MATLAB.
Instructional Video6:18
Curated Video

Things I Wish I Knew When I Was Learning to Code

Higher Ed
Things I Wish I Knew When I Was Learning to Code
Instructional Video8:14
Curated Video

What's On My Laptop? | 13" M1 Macbook Pro for Machine Learning

Higher Ed
What's On My Laptop? | 13" M1 Macbook Pro for Machine Learning
Instructional Video19:28
APMonitor

Find Equation Roots with Excel

10th - Higher Ed
Two examples show how to (1) find the roots of a cubic equation and (2) find the roots of the Redlich Kwong equation of state that relates pressure and temperature to molar volume for read gasses.
Instructional Video7:46
APMonitor

Solve Linear Equations with Python

10th - Higher Ed
Linear equations such as A*x=b are solved with NumPy in Python. This tutorial demonstrates how to create a matrix (A) and vector (b) as NumPy arrays and solve the set of equations with linalg.solve
Instructional Video13:55
APMonitor

Nonlinear Regression in Python

10th - Higher Ed
A three parameter (a,b,c) model y = a + b/x + c ln(x) is fit to a set of data with the Python APMonitor package. This tutorial walks through the process of installing the solver, setting up the objective (normalized sum of squared...
Instructional Video25:13
APMonitor

MathCAD Functions and Matrices

10th - Higher Ed
Mathcad is a tool to arrange, calculate, and visualize engineering calculations and functions can help with reusing expressions in subsequent evaluations. Use the following worksheets to step through example problems related to using...
Instructional Video9:00
APMonitor

Curve Fit with Excel and Python

10th - Higher Ed
Nonlinear regression with heart rate data is shown in both Microsoft Excel and Python. GEKKO and SciPy curve_fit are used as two alternatives in Python. Heart rate data is available at...
Instructional Video13:33
APMonitor

Fit Nonlinear Model to Data with Excel

10th - Higher Ed
Microsoft Excel adjusts parameters to minimize the difference between measured and predicted values. This tutorial demonstrates how to calculate the sum of squared errors and minimize error with the Solver add-in. See...
Instructional Video13:38
APMonitor

Simulate Differential Equations with Python ODEINT

10th - Higher Ed
The heights of a dual gravity drained tank are solved with the Scipy.integrate function ODEINT. This example demonstrates how to solve the differential equation and plot the solution.
Instructional Video33:34
APMonitor

Numpy and Loops in Python

10th - Higher Ed
This introductory homework assignment solution covers Numpy and loops (for and while) in Python. The example problems use simple vectors and matrices, reshaping, index referencing, initialization, dot product, cross product, matrix...
Instructional Video4:41
APMonitor

Mathematical Optimization with Python

10th - Higher Ed
This tutorial demonstrates how to solve a simple mathematical optimization problem with four variables, one objective function, one equality constraint, and an inequality constraint. The problem is solved with the APMonitor toolbox in...
Instructional Video10:26
APMonitor

Solve Nonlinear Equations with Excel

10th - Higher Ed
Microsoft Excel is used to solve a set of nonlinear equations with the Excel solver add-in.
Instructional Video13:30
APMonitor

Solve Nonlinear Equations with Microsoft Excel

10th - Higher Ed
The GRG (Generalized Reduced Gradient) solver in Excel can be used to solve sets of nonlinear equations. The nonlinear functions are input as cells and equation residuals are minimized. Functions can either be included as equality...
Instructional Video17:49
APMonitor

Analyze Stock Data with Microsoft Excel

10th - Higher Ed
Visualization of data is a powerful method to see trends and make decisions. Microsoft Excel trending capabilities are tools to visualize large data sets, such as financial information on company performance.
Instructional Video15:35
APMonitor

Nonlinear Regression in MATLAB

10th - Higher Ed
A three parameter (a,b,c) model y = a + b/x + c ln(x) is fit to a set of data with the MATLAB APMonitor toolbox. This tutorial walks through the process of installing the solver, setting up the objective (normalized sum of squared...
Instructional Video14:26
APMonitor

MATLAB Nonlinear Optimization with fmincon

10th - Higher Ed
This step-by-step tutorial demonstrates fmincon solver on a nonlinear optimization problem with one equality and one inequality constraint. Visit http://apmonitor.com/che263/index.php/Main/MatlabOptimization for source code.