mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
52 lines (49 loc) • 1.76 kB
JavaScript
'use strict';
function factory(type, config, load, typed) {
var getArrayDataType = load(require('../../type/matrix/utils/getArrayDataType'));
/**
* Find the data type of all elements in a matrix or array,
* for example 'number' if all items are a number and 'Complex' if all values
* are complex numbers.
* If a matrix contains more than one data type, it will return 'mixed'.
*
* Syntax:
*
* math.getMatrixDataType(x)
*
* Examples:
*
* const x = [ [1, 2, 3], [4, 5, 6] ]
* const mixedX = [ [1, true], [2, 3] ]
* const fractionX = [ [math.fraction(1, 3)], [math.fraction(1, 3] ]
* const unitX = [ [math.unit('5cm')], [math.unit('5cm')] ]
* const bigNumberX = [ [math.bignumber(1)], [math.bignumber(0)] ]
* const sparse = math.sparse(x)
* const dense = math.matrix(x)
* math.getMatrixDataType(x) // returns 'number'
* math.getMatrixDataType(sparse) // returns 'number'
* math.getMatrixDataType(dense) // returns 'number'
* math.getMatrixDataType(mixedX) // returns 'mixed'
* math.getMatrixDataType(fractionX) // returns 'Fraction'
* math.getMatrixDataType(unitX) // returns 'Unit'
* math.getMatrixDataType(bigNumberX) // return 'BigNumber'
*
* See also:
* SparseMatrix, DenseMatrix
*
* @param {...Matrix | Array} x The Matrix with values.
*
* @return {string} A string representation of the matrix type
*/
var getMatrixDataType = typed('getMatrixDataType', {
'Array': function Array(x) {
return getArrayDataType(x);
},
'Matrix': function Matrix(x) {
return x.getDataType();
}
});
return getMatrixDataType;
}
exports.name = 'getMatrixDataType';
exports.factory = factory;