/** * Numerically encodes the strings in the matrix with an encoding dictionary. * @param matrixInitial - Original matrix before encoding. * @param dictionary - Dictionary against which to do the encoding. * @returns - Encoded matrix. */ export declare function matrixApplyNumericalEncoding(matrixInitial: Array>, dictionary: Record): number[][]; //# sourceMappingURL=matrixApplyNumericalEncoding.d.ts.map