<< rdivf Symbolic subf >>

removed >> removed > 5-5-2 > Symbolic > solve

solve

symbolic linear system solver

Calling Sequence

[x] = solve(A, b)

Arguments

A, b, x

matrix (resp. vectors) of character strings

Description

x = solve(A, b) solves A*x = b when A is an upper triangular matrix made of character strings.

Examples

A=['1','a';'0','2'];   //Upper triangular
b=['x';'y'];

w=solve(A,b)

a=1;x=2;y=5;
evstr(w)
inv([1,1;0,2])*[2;5]

See Also

History

VersionDescription
5.5.2 solve was removed after Scilab 5.5.2.

Report an issue
<< rdivf Symbolic subf >>