feat:node-modules
This commit is contained in:
55
node_modules/mathjs/lib/esm/function/arithmetic/square.js
generated
vendored
Normal file
55
node_modules/mathjs/lib/esm/function/arithmetic/square.js
generated
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
import { factory } from '../../utils/factory.js';
|
||||
import { squareNumber } from '../../plain/number/index.js';
|
||||
var name = 'square';
|
||||
var dependencies = ['typed'];
|
||||
export var createSquare = /* #__PURE__ */factory(name, dependencies, _ref => {
|
||||
var {
|
||||
typed
|
||||
} = _ref;
|
||||
/**
|
||||
* Compute the square of a value, `x * x`.
|
||||
* To avoid confusion with multiplying a square matrix by itself,
|
||||
* this function does not apply to matrices. If you wish to square
|
||||
* every element of a matrix, see the examples.
|
||||
*
|
||||
* Syntax:
|
||||
*
|
||||
* math.square(x)
|
||||
*
|
||||
* Examples:
|
||||
*
|
||||
* math.square(2) // returns number 4
|
||||
* math.square(3) // returns number 9
|
||||
* math.pow(3, 2) // returns number 9
|
||||
* math.multiply(3, 3) // returns number 9
|
||||
*
|
||||
* math.map([1, 2, 3, 4], math.square) // returns Array [1, 4, 9, 16]
|
||||
*
|
||||
* See also:
|
||||
*
|
||||
* multiply, cube, sqrt, pow
|
||||
*
|
||||
* @param {number | BigNumber | bigint | Fraction | Complex | Unit} x
|
||||
* Number for which to calculate the square
|
||||
* @return {number | BigNumber | bigint | Fraction | Complex | Unit}
|
||||
* Squared value
|
||||
*/
|
||||
return typed(name, {
|
||||
number: squareNumber,
|
||||
Complex: function Complex(x) {
|
||||
return x.mul(x);
|
||||
},
|
||||
BigNumber: function BigNumber(x) {
|
||||
return x.times(x);
|
||||
},
|
||||
bigint: function bigint(x) {
|
||||
return x * x;
|
||||
},
|
||||
Fraction: function Fraction(x) {
|
||||
return x.mul(x);
|
||||
},
|
||||
Unit: function Unit(x) {
|
||||
return x.pow(2);
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user