Example #1
0
        void ValidateMatrix(double[][] m)
        {
            INumberTable nt  = MultivariateAnalysisPlugin.App.ScriptApp.New.NumberTable(m);
            INumberTable ntT = nt.Transpose2();
            INumberTable I   = nt.Multiply(ntT);

            I.ShowAsTable();
        }