Beispiel #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();
        }
Beispiel #2
0
 public INumberTable Transform(INumberTable inTable)
 {
     return(inTable.Multiply(baseTable));
 }