
Find intersections - three practical approaches with Matlab
The problem of how to find intersections of given lines is very common in math or basic algebra. The meaning of those points is that the given lines or curves have the same coordinate values at some …
ASCII Chart in Matlab
ASCII Chart in Matlab In this article we have three goals: first, we’re going to develop an ASCII chart to understand instructions char and double in Matlab; second, we’re going to work with a simple ASCII …
Step function - unit step with Matlab - matrixlab-examples.com
How to plot the unit step function - Heaviside - with Matlab. Let's see some examples of discrete operations...
Singular Value Decomposition - experiments in Matlab
Let's find with Matlab the singular value decomposition of A = [ 0 -1 -2 1 1 0] We simply type: [U,S,V] = svd (A) and the above operation produces a diagonal matrix S, of the same dimension as A and with …
Matlab Help - examples and videos
MATLAB supports interactive computation, taking the input from the screen, and flushing the output to the screen. Additionally, it can read input files and write output files. Data types The fundamental …
Bisection Method in Matlab - matrixlab-examples.com
A Bisection Method is proposed to find roots on continuous functions in a given interval...
RC circuit - Transient analysis with Matlab
The following examples illustrate the use of Matlab for solving problems related to RC circuits. Example 1 – Charging circuit Assume that for the charging RC circuit above Vs = 10 volts and C = 10 …
Polynomial Regression in Matlab - easy least squares fitting
May 7, 2010 · Polynomial Regression – Least Square Fittings This brief article will demonstrate how to work out polynomial regressions in Matlab (also known as polynomial least squares fittings). The …
Simple animation with Matlab... easy
If we have some data representing a system or a function at several time intervals, we may want to take advantage of Matlab’s simple animation capabilities. We're going to expose the basic method or …
Calculate Simple Interest and compound one... code in Matlab
Calculate Simple Interest and Compound Interest – easy exercises with Matlab We’ll see how to calculate the simple interest and the compound one in this article. We have to start with some …