logo for matrixlab-examples.com
[?] Subscribe To This Site

XML RSS
Add to Google
Add to My Yahoo!
Add to My MSN
Subscribe with Bloglines


Home
Matrixmania Blog
Contact
-> Sitemap <-
-> Matlab Books <-
Quick Matlab Guide
Matlab Tutorial
Matlab Examples
Matlab Control Flow
Boolean Algebra
Linear Algebra
Matlab 2D Plot
Matlab 3D Plot
Matlab GUI
Matlab Cookbook
Matlab Cookbook II
Probability and Stats
Forums
Relevant Links
Fun!
Your own Website?
leftimage for matrixlab-examples.com

Linear Algebra

Here are some important and requested topics regarding Linear Algebra. Click on the link of your interest to see the full exposition.

Determinants
The symbol which consists of the four numbers a1, b1, a2, b2 arranged in two rows and two columns is called a determinant of second order or determinant of order two. The four numbers are called elements of the determinant...

Cramer's Rule
In linear algebra, the method of solution of systems of equations by determinants is called Cramer's Rule. This rule for linear equations in 3 unknowns is a method of solving by determinants the following equations for x, y, z...

Simultaneous Equations
Solving a set of linear equations is easy in Matlab. It is, maybe, the most used operation in science and engineering, too. Solving a system of simultaneous equations on a computer is nowadays as basic as doing arithmetic additions using a calculator. Let's see how easy Matlab makes this task...

Application - Circuit Analysis
One important algebra application is the resolution of electrical circuits. We can describe this type of circuits with linear equations, and then we can solve the linear system using Matlab. For example, let's examine the following electrical circuit (resistors are in ohms, currents in amperes, and voltages are in volts)...

Linear Programming (as optimization problem)
We will illustrate the method of linear programming by means of a simple example giving a numerical solution. We are going to formulate the problem as an optimization issue, and we'll use the instruction 'fminsearch', which is an always available instruction...

LU Factorization
In Matlab there are several built-in functions provided for matrix factorization (also called decomposition). The name of the built-in function for a Lower-Upper decomposition is 'lu'. To get the LU factorization of a square matrix A, type the command '[L, U] = lu(A)'...

Singular Value Decomposition - SVD
Let's suppose that a matrix A is singular. Then, let A be a real m x n matrix of rank rThe Singular Value Decomposition (svd) of A is A = U S V' (the apostrophe after a matrix or vector means its transpose) where U is an orthogonal m x n matrix, S is an r x r diagonal matrix, and V is an n x n square orthogonal matrix. Since U and V are orthogonal, then...

From 'Linear Algebra' to home

footer for linear algebra page