simple-squiggle

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

kron.js (289B)


      1 export var kronDocs = {
      2   name: 'kron',
      3   category: 'Matrix',
      4   syntax: ['kron(x, y)'],
      5   description: 'Calculates the kronecker product of 2 matrices or vectors.',
      6   examples: ['kron([[1, 0], [0, 1]], [[1, 2], [3, 4]])', 'kron([1,1], [2,3,4])'],
      7   seealso: ['multiply', 'dot', 'cross']
      8 };