simple-squiggle/node_modules/mathjs/lib/esm/expression/embeddedDocs/function/arithmetic/dotPow.js

8 lines
241 B
JavaScript
Raw Normal View History

export var dotPowDocs = {
name: 'dotPow',
category: 'Operators',
syntax: ['x .^ y', 'dotPow(x, y)'],
description: 'Calculates the power of x to y element wise.',
examples: ['a = [1, 2, 3; 4, 5, 6]', 'a .^ 2'],
seealso: ['pow']
};