UNPKG

376 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.dotPowDocs = void 0;
7var dotPowDocs = {
8 name: 'dotPow',
9 category: 'Operators',
10 syntax: ['x .^ y', 'dotPow(x, y)'],
11 description: 'Calculates the power of x to y element wise.',
12 examples: ['a = [1, 2, 3; 4, 5, 6]', 'a .^ 2'],
13 seealso: ['pow']
14};
15exports.dotPowDocs = dotPowDocs;
\No newline at end of file