mtlb_sparse - Convert sparse matrix (original) (raw)

Scilab 5.3.3

Please note that the recommended version of Scilab is 2026.0.1. This page might be outdated.
However, this page did not exist in the previous stable version.

Scilab help >> Sparse Matrix > mtlb_sparse

Calling Sequence

Arguments

X

sparse matrix

Y

sparse matrix in Matlab format

Description

Y=mtlb_sparse(X) is used to convert X, a Scilab sparse matrix, to Matlab format. Y is the a variable with type 7, i.e. type(Y) is equal to 7. This function should be used in mexfiles (a Matlab mexfile containing sparse matrices can be used only if the Scilab sparse matrices are converted to that format). The functions full and spget work with this format.

Other operations and functions using this format can be overloaded with Scilab functions using the prefix "%msp". For instance the function %msp_p(x) (see SCI/modules/overloading/macros directory) is used to display such "type 7" objects.

Examples

See Also