UNPKG

289 BJavaScriptView Raw
1export 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};
\No newline at end of file