dina-agi
Version:
DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.
14 lines (13 loc) • 410 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.kronDocs = void 0;
const kronDocs = exports.kronDocs = {
name: 'kron',
category: 'Matrix',
syntax: ['kron(x, y)'],
description: 'Calculates the Kronecker product of 2 matrices or vectors.',
examples: ['kron([[1, 0], [0, 1]], [[1, 2], [3, 4]])', 'kron([1,1], [2,3,4])'],
seealso: ['multiply', 'dot', 'cross']
};