mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
15 lines
232 B
JavaScript
15 lines
232 B
JavaScript
// test matrix functions
|
|
|
|
var assert = require('assert');
|
|
var math = require('../../math.js'),
|
|
Complex = math.Complex,
|
|
Unit = math.Unit,
|
|
Matrix = math.Matrix,
|
|
Vector = math.Vector;
|
|
|
|
// test size
|
|
|
|
|
|
|
|
// TODO: test eye
|