73 lines
1.8 KiB
JavaScript

module.exports = function (math) {
var util = require('../../util/index'),
Scope = require('../../expression/Scope'),
collection = require('../../type/collection'),
isString = util.string.isString,
isCollection = collection.isCollection;
/**
* Evaluate an expression.
*
* Syntax:
*
* math.eval(expr)
* math.eval(expr, scope)
* math.eval([expr1, expr2, expr3, ...])
* math.eval([expr1, expr2, expr3, ...], scope)
*
* Example:
*
* math.eval('(2+3)/4'); // 1.25
* math.eval('sqrt(3^2 + 4^2)'); // 5
* math.eval('sqrt(-4)'); // 2i
* math.eval(['a=3', 'b=4', 'a*b']);, // [3, 4, 12]
*
* var scope = {a:3, b:4};
* math.eval('a * b', scope); // 12
*
* @param {String | String[] | Matrix} expr
* @param {Scope | Object} [scope]
* @return {*} res
* @throws {Error}
*/
math.eval = function _eval (expr, scope) {
if (arguments.length != 1 && arguments.length != 2) {
throw new util.error.ArgumentsError('eval', arguments.length, 1, 2);
}
// instantiate a scope
var evalScope;
if (scope) {
if (scope instanceof Scope) {
evalScope = scope;
}
else {
evalScope = new Scope(math, scope);
}
}
else {
evalScope = new Scope(math);
}
if (isString(expr)) {
// evaluate a single expression
var node = math.parse(expr, evalScope);
return node.eval();
}
else if (isCollection(expr)) {
// evaluate an array or matrix with expressions
return collection.deepMap(expr, function (elem) {
var node = math.parse(elem, evalScope);
return node.eval();
});
}
else {
// oops
throw new TypeError('String or matrix expected');
}
};
};