Main Content

equationsToMatrix

Convert linear equations to matrix form

Description

example

[A,b] = equationsToMatrix(eqns) converts equations eqns to matrix form. eqns must be a linear system of equations in all variables that symvar finds in eqns.

example

[A,b] = equationsToMatrix(eqns,vars) converts eqns to matrix form, where eqns must be linear in vars.

example

A = equationsToMatrix(___) returns only the coefficient matrix of the system of equations.

Examples

collapse all

Convert a system of linear equations to matrix form. equationsToMatrix automatically detects the variables in the equations by using symvar. The returned coefficient matrix follows the variable order determined by symvar.

syms x y z
eqns = [x+y-2*z == 0,
        x+y+z == 1,
        2*y-z == -5];
[A,b] = equationsToMatrix(eqns)
A = 

(11-211102-1)

b = 

(01-5)

vars = symvar(eqns)
vars = (xyz)

You can change the arrangement of the coefficient matrix by specifying other variable order.

vars = [x,z,y];
[A,b] = equationsToMatrix(eqns,vars)
A = 

(1-211110-12)

b = 

(01-5)

Convert a linear system of equations to the matrix form by specifying independent variables. This is useful when the equations are only linear in some variables.

For this system, specify the variables as [s t] because the system is not linear in r.

syms r s t
eqns = [s-2*t+r^2 == -1
        3*s-t == 10];
vars = [s t];
[A,b] = equationsToMatrix(eqns,vars)
A = 

(1-23-1)

b = 

(-r2-110)

Return only the coefficient matrix of the equations by specifying a single output argument.

syms x y z
eqns = [x+y-2*z == 0,
        x+y+z   == 1,
        2*y-z   == -5];
vars = [x y z];
A = equationsToMatrix(eqns,vars)
A = 

(11-211102-1)

Consider the following system of linear equations that are functions of time:

2x(t)+y(t)+z(t)=2u(t)-x(t)+y(t)-z(t)=v(t)x(t)+2y(t)+3z(t)=-10

Declare the system of equations.

syms x(t) y(t) z(t) u(t) v(t)
eqn1 = 2*x + y + z == 2*u;
eqn2 = -x + y - z == v;
eqn3 = x + 2*y + 3*z == -10;
eqn = [eqn1; eqn2; eqn3]
eqn(t) = 

(2x(t)+y(t)+z(t)=2u(t)y(t)-x(t)-z(t)=v(t)x(t)+2y(t)+3z(t)=-10)

Specify the independent variables x(t), y(t), and z(t) in the equations as a symbolic vector vars. Use the equationsToMatrix function to convert the system of equations into the matrix form.

vars = [x(t); y(t); z(t)];
[A,b] = equationsToMatrix(eqn,vars)
A = 

(211-11-1123)

b = 

(2u(t)v(t)-10)

Solve the matrix form of the equations using the linsolve function.

X = linsolve(A,b)
X = 

(10u(t)9-v(t)9+2094u(t)9+5v(t)9-109-2u(t)3-v(t)3-103)

Evaluate the z(t) solution for the functions u(t)=cos(t) and v(t)=sin(2t). Plot the z(t) solution.

zSol = subs(X(3),[u(t) v(t)],[cos(t) sin(2*t)])
zSol = 

-sin(2t)3-2cos(t)3-103

fplot(zSol)

Figure contains an axes object. The axes object contains an object of type functionline.

Input Arguments

collapse all

Linear equations, specified as a vector of symbolic equations or expressions. Symbolic equations are defined by using the == operator, such as x + y == 1. For symbolic expressions, equationsToMatrix assumes that the right side is 0.

Equations must be linear in terms of vars.

Independent variables in eqns, specified as a vector of symbolic variables or symbolic functions.

Output Arguments

collapse all

Coefficient matrix of the system of linear equations, specified as a symbolic matrix.

Vector containing the right sides of equations, specified as a symbolic matrix.

More About

collapse all

Matrix Representation of System of Linear Equations

A system of linear equations

a11x1+a12x2++a1nxn=b1a21x1+a22x2++a2nxn=b2am1x1+am2x2++amnxn=bm

can be represented as the matrix equation Ax=b. Here, A is the coefficient matrix.

A=(a11a1nam1amn)

b is the vector containing the right sides of equations.

b=(b1bm)

Version History

Introduced in R2012b