MtxExpr.Kron Method

function Kron(const Vec1: TVec; const Vec2: TVec): Vector;

Computes the kronecker product.

#NameTypeDescription
1Vec1TVec
2Vec2TVec

Returns: Vector

Remarks:

Internally calls Vector.Kron

Examples
var A: TMtx;
    V1,V2: TVec;
begin
    CreateIt(A);
    CreateIt(V1,V2);
    try
        V1.SetIt(False,[1,2,3]);
        V2.SetIt(False,[4,5,6]);
        A.Kron(V1,V2);
        // A becomes:
        // [4   5  6]
        // [8  10 12]
        // [12 15 18]
    finally
        FreeIt(A);
        FreeIt(V1,V2);
    end;
end;