str = mphmatrix(model,soltag,'Out',{'A'},...) returns a MATLAB
® structure
str containing the matrix
A assembled using the solver node
soltag and accessible as
str.A,
A being taken from the
Out property list.
str = mphmatrix(model,soltag,fname,'Out',{'A','B',...}) returns a MATLAB structure
str containing the matrices
A,
B, … assembled using the solver node
solname and accessible as s
tr.A and
str.B,
A and
B being taken from the
Out property list.
The function mphmatrix accepts the following property/value pairs:
The load vector is assembled using the current solution available as linearization point unless the initmethod property is provided. In case of the presence of a solver step node in the solver sequence, the load vector correspond then to the residual of the problem.
The function mphmatrix does not solve the problem as the assembly is performed before the solver node in the solution sequence. You can specify the solution feature node after which to assemble the system matrices with the property
extractafter. This is useful if you need to compute the solution before extracting the matrices or if you have a solution sequence using different solver sequences and you want to extract the matrices for a specific one.
The Advanced section in the
COMSOL Multiphysics Reference Manual, describes the functionality corresponding to the properties
complexfun,
nullfun, and
rowscale.
Use the property symmetric to assemble the model matrix system as symmetric/Hermitian, or you can use the automatic feature to find out (see
Advanced in the
COMSOL Multiphysics Reference Manual).