Ejemplo n.º 1
0
        public RademaxerMatrix(ExpansionBase expansionBase, ParyX[] xs, int K, Complex N)
        {
            matrix = MatrixUtils <Complex[, ]> .BuildRadamacher(expansionBase, xs, K);

            conjugatedMatrix = MatrixUtils <Complex[, ]> .Conjugate(matrix);

            MatrixUtils <Complex> .Multiply(conjugatedMatrix, N);
        }