mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
15 lines
284 B
JavaScript
15 lines
284 B
JavaScript
// test trigonometric functions
|
|
|
|
var assert = require('assert');
|
|
var math = require('../../math.js'),
|
|
Complex = math.Complex,
|
|
Unit = math.Unit;
|
|
|
|
// TODO: test acos
|
|
// TODO: test asin
|
|
// TODO: test atan
|
|
// TODO: test atan2
|
|
// TODO: test cos
|
|
// TODO: test sin
|
|
// TODO: test tan
|