Пример #1
0
        void Application_Start(object sender, EventArgs e)
        {
            // Code that runs on application startup
            appRegistry = new Registry.Registry(Application);

            //Add algorithms

            Analysis.Analysis myPCA0 = new Analysis.PCA.PCADynamicNIPALS("Principal Component Analysis - NIPALs (Dynamic)");
            appRegistry.registerAlgorithm(myPCA0);

            Analysis.Analysis myPCA1 = new Analysis.PCA.NipalsPCA("Principal Component Analysis - NIPALs");
            appRegistry.registerAlgorithm(myPCA1);

            Analysis.Analysis myPCA2 = new Analysis.PCA.svdPCA("Principal Component Analysis - SVD");
            appRegistry.registerAlgorithm(myPCA2);

            //Add existing data sets
        }
Пример #2
0
        void Application_Start(object sender, EventArgs e)
        {
            // Code that runs on application startup
            appRegistry = new Registry.Registry(Application);

            //Add algorithms

            Analysis.Analysis myPCA0 = new Analysis.PCA.PCADynamicNIPALS("Principal Component Analysis - NIPALs (Dynamic)");
            appRegistry.registerAlgorithm(myPCA0);
            
            Analysis.Analysis myPCA1 = new Analysis.PCA.NipalsPCA("Principal Component Analysis - NIPALs");
            appRegistry.registerAlgorithm(myPCA1);
   
            Analysis.Analysis myPCA2 = new Analysis.PCA.svdPCA("Principal Component Analysis - SVD");
            appRegistry.registerAlgorithm(myPCA2);

            //Add existing data sets 
        }