<< ff_var SciFreeFEM getffResult >>

SciFreeFEM >> SciFreeFEM > getMatrix

getMatrix

Get the matrix of the linear problem

Calling Sequence

[Mat,jlow,jhigh,SizeBloc] = getMatrix()

Parameters

Mat

a list of real values

jlow

a list of integer values

jhigh

a list of integer values

SizeBloc

a list of real values

Description

Get the matrix of the linear problem

Examples

// Define and solve the problem
ff_problem('solve(u) {pde(u) laplace(u) = 1; on(a,b,c,d,e,f) u = 0;};',1);
  
// Get the result as a Scilab variable
[tFunc] = getffResult('u');

// Get the matrix of the linear problem
[Mat,jlow,jhigh,SizeBloc] = getMatrix();

See Also

Authors

Yann Collette


Report an issue
<< ff_var SciFreeFEM getffResult >>