simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

dotPow.js (376B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.dotPowDocs = void 0;
      7 var 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 };
     15 exports.dotPowDocs = dotPowDocs;