simple-squiggle

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

dotPow.js (241B)


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