Beispiel #1
0
 public KPCAOptions(DataTable inputData, AnalysisMethod method, bool center, KPCAKernelKind kpcaKernel, double?sigma,
                    int?degree, double?constant)
 {
     this.inputData  = inputData;
     this.method     = method;
     this.center     = center;
     this.kpcaKernel = kpcaKernel;
     this.sigma      = sigma;
     this.degree     = degree;
     this.constant   = constant;
 }
 public KPCAOptions(DataTable inputData, AnalysisMethod method, bool center, KPCAKernelKind kpcaKernel, double? sigma, 
     int? degree, double? constant)
 {
     this.inputData = inputData;
     this.method = method;
     this.center = center;
     this.kpcaKernel = kpcaKernel;
     this.sigma = sigma;
     this.degree = degree;
     this.constant = constant;
 }