time-to-botec/squiggle/node_modules/jstat/test/linearalgebra/log-test.js
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

20 lines
416 B
JavaScript

var vows = require('vows');
var assert = require('assert');
var suite = vows.describe('jStat');
require('../env.js');
suite.addBatch({
'linearalgebra': {
'topic': function() {
return jStat;
},
'log function works': function(jStat) {
var A = jStat([[1, Math.E], [Math.exp(5), Math.exp(10)]]);
assert.deepEqual(A.log(), jStat([[0, 1], [5, 10]]));
}
}
});
suite.export(module);