mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
73 lines
3.0 KiB
JavaScript
73 lines
3.0 KiB
JavaScript
var assert = require('assert'),
|
|
math = require('../../../index'),
|
|
matrix = math.matrix,
|
|
eye = math.eye;
|
|
|
|
describe('eye', function() {
|
|
|
|
it('should create an empty matrix', function () {
|
|
assert.deepEqual(eye(), matrix());
|
|
assert.deepEqual(eye([]), []);
|
|
assert.deepEqual(eye(matrix([])), matrix());
|
|
});
|
|
|
|
it('should create an empty sparse matrix', function () {
|
|
assert.deepEqual(eye('sparse'), matrix('sparse'));
|
|
assert.deepEqual(eye(matrix([], 'sparse')), matrix('sparse'));
|
|
});
|
|
|
|
it('should create an identity matrix of the given size', function() {
|
|
assert.deepEqual(eye(1), matrix([[1]]));
|
|
assert.deepEqual(eye(2), matrix([[1,0],[0,1]]));
|
|
assert.deepEqual(eye([2]), [[1,0],[0,1]]);
|
|
assert.deepEqual(eye(2,3), matrix([[1,0,0],[0,1,0]]));
|
|
assert.deepEqual(eye(3,2), matrix([[1,0],[0,1],[0,0]]));
|
|
assert.deepEqual(eye([3,2]), [[1,0],[0,1],[0,0]]);
|
|
assert.deepEqual(eye(math.matrix([3,2])), matrix([[1,0],[0,1],[0,0]]));
|
|
assert.deepEqual(eye(3,3), matrix([[1,0,0],[0,1,0],[0,0,1]]));
|
|
});
|
|
|
|
it('should create an identity matrix with storage type css of the given size', function() {
|
|
assert.deepEqual(eye(1, 'sparse'), matrix([[1]], 'sparse'));
|
|
assert.deepEqual(eye(2, 'sparse'), matrix([[1,0],[0,1]], 'sparse'));
|
|
assert.deepEqual(eye(2,3, 'sparse'), matrix([[1,0,0],[0,1,0]], 'sparse'));
|
|
assert.deepEqual(eye(3,2, 'sparse'), matrix([[1,0],[0,1],[0,0]], 'sparse'));
|
|
assert.deepEqual(eye(3,3, 'sparse'), matrix([[1,0,0],[0,1,0],[0,0,1]], 'sparse'));
|
|
});
|
|
|
|
it('should create an identity matrix with bignumbers', function() {
|
|
var zero = math.bignumber(0);
|
|
var one = math.bignumber(1);
|
|
var two = math.bignumber(2);
|
|
var three = math.bignumber(3);
|
|
assert.deepEqual(eye(two), matrix([[one,zero],[zero,one]]));
|
|
//assert.deepEqual(eye(two, 'sparse'), matrix([[one,zero],[zero,one]], 'sparse')); // FIXME: eye css
|
|
assert.deepEqual(eye(two, three), matrix([[one,zero,zero],[zero,one,zero]]));
|
|
//assert.deepEqual(eye(two, three, 'sparse'), matrix([[one,zero,zero],[zero,one,zero]], 'sparse')); // FIXME: eye css
|
|
});
|
|
|
|
it('should return an array when setting matrix=="array"', function() {
|
|
var math2 = math.create({matrix: 'array'});
|
|
assert.deepEqual(math2.eye(2), [[1,0],[0,1]]);
|
|
});
|
|
|
|
it('should throw an error with an invalid input', function() {
|
|
assert.throws(function () {eye(3, 3, 2);});
|
|
assert.throws(function () {eye([3, 3, 2]);});
|
|
assert.throws(function () {eye([3, 3], 2);});
|
|
assert.throws(function () {eye([3.2, 3]);});
|
|
assert.throws(function () {eye([3, 3.2]);});
|
|
assert.throws(function () {eye([3.2, 3.2]);});
|
|
assert.throws(function () {eye([2, 'str']);});
|
|
assert.throws(function () {eye(['str', 2]);});
|
|
assert.throws(function () {eye([-2, 2]);});
|
|
assert.throws(function () {eye([2, -2]);});
|
|
});
|
|
|
|
it('should LaTeX eye', function () {
|
|
var expression = math.parse('eye(2)');
|
|
assert.equal(expression.toTex(), '\\mathrm{eye}\\left(2\\right)');
|
|
});
|
|
|
|
});
|