------------------------------------------------------------------------------
| 66 | |
| 67 | //------------------------------------------------------------------------------ |
| 68 | void vtkPPCAStatistics::Test(vtkTable* inData, vtkStatisticalModel* inMeta, vtkTable* outMeta) |
| 69 | { |
| 70 | if (this->Controller->GetNumberOfProcesses() > 1) |
| 71 | { |
| 72 | vtkWarningMacro("Parallel PCA: Hypothesis testing not implemented for more than 1 process."); |
| 73 | return; |
| 74 | } |
| 75 | |
| 76 | this->Superclass::Test(inData, inMeta, outMeta); |
| 77 | } |
| 78 | |
| 79 | //------------------------------------------------------------------------------ |
| 80 | vtkOrderStatistics* vtkPPCAStatistics::CreateOrderStatisticsInstance() |
no test coverage detected