simple-squiggle/node_modules/mathjs/lib/cjs/function/arithmetic/unaryMinus.js

65 lines
1.8 KiB
JavaScript
Raw Permalink Normal View History

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createUnaryMinus = void 0;
var _factory = require("../../utils/factory.js");
var _collection = require("../../utils/collection.js");
var _index = require("../../plain/number/index.js");
var name = 'unaryMinus';
var dependencies = ['typed'];
var createUnaryMinus = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) {
var typed = _ref.typed;
/**
* Inverse the sign of a value, apply a unary minus operation.
*
* For matrices, the function is evaluated element wise. Boolean values and
* strings will be converted to a number. For complex numbers, both real and
* complex value are inverted.
*
* Syntax:
*
* math.unaryMinus(x)
*
* Examples:
*
* math.unaryMinus(3.5) // returns -3.5
* math.unaryMinus(-4.2) // returns 4.2
*
* See also:
*
* add, subtract, unaryPlus
*
* @param {number | BigNumber | Fraction | Complex | Unit | Array | Matrix} x Number to be inverted.
* @return {number | BigNumber | Fraction | Complex | Unit | Array | Matrix} Returns the value with inverted sign.
*/
return typed(name, {
number: _index.unaryMinusNumber,
Complex: function Complex(x) {
return x.neg();
},
BigNumber: function BigNumber(x) {
return x.neg();
},
Fraction: function Fraction(x) {
return x.neg();
},
Unit: function Unit(x) {
var res = x.clone();
res.value = this(x.value);
return res;
},
'Array | Matrix': function ArrayMatrix(x) {
// deep map collection, skip zeros since unaryMinus(0) = 0
return (0, _collection.deepMap)(x, this, true);
} // TODO: add support for string
});
});
exports.createUnaryMinus = createUnaryMinus;