sparse.js (404B)
1 export var sparseDocs = { 2 name: 'sparse', 3 category: 'Construction', 4 syntax: ['sparse()', 'sparse([a1, b1, ...; a1, b2, ...])', 'sparse([a1, b1, ...; a1, b2, ...], "number")'], 5 description: 'Create a sparse matrix.', 6 examples: ['sparse()', 'sparse([3, 4; 5, 6])', 'sparse([3, 0; 5, 0], "number")'], 7 seealso: ['bignumber', 'boolean', 'complex', 'index', 'number', 'string', 'unit', 'matrix'] 8 };