VTK  9.6.20251231
vtkMultiCorrelativeStatistics.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright 2010 Sandia Corporation
3// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
64
65#ifndef vtkMultiCorrelativeStatistics_h
66#define vtkMultiCorrelativeStatistics_h
67
68#include "vtkFiltersStatisticsModule.h" // For export macro
70
71VTK_ABI_NAMESPACE_BEGIN
72class vtkDoubleArray;
75class vtkVariant;
76
77class VTKFILTERSSTATISTICS_EXPORT vtkMultiCorrelativeStatistics : public vtkStatisticsAlgorithm
78{
79public:
81 void PrintSelf(ostream& os, vtkIndent indent) override;
83
88
90
95 vtkSetMacro(MedianAbsoluteDeviation, bool);
96 vtkGetMacro(MedianAbsoluteDeviation, bool);
97 vtkBooleanMacro(MedianAbsoluteDeviation, bool);
99
101 void AppendAlgorithmParameters(std::string& algorithmParameters) const override;
102
105 vtkStringToken parameterName, const std::string& algorithmParameters) override;
106
107protected:
110
115
120
125
130
135 AssessFunctor*& dfunc) override;
136
140 virtual void ComputeMedian(vtkTable* inData, vtkTable* outData);
141
147
149
150private:
152 void operator=(const vtkMultiCorrelativeStatistics&) = delete;
153};
154
155VTK_ABI_NAMESPACE_END
156#endif
maintain an unordered list of data objects
general representation of visualization data
dynamic, self-adjusting array of double
a simple class to control print indentation
Definition vtkIndent.h:108
std::size_t ConsumeNextAlgorithmParameter(vtkStringToken parameterName, const std::string &algorithmParameters) override
Implement the inverse of AppendAlgorithmParameters(): given parameters, update this algorithm.
void Derive(vtkStatisticalModel *) override
Execute the calculations required by the Derive option.
~vtkMultiCorrelativeStatistics() override
virtual vtkOrderStatistics * CreateOrderStatisticsInstance()
Return a new vtkOrderStatistics instance.
void AppendAlgorithmParameters(std::string &algorithmParameters) const override
Provide a string that can be used to recreate an instance of this algorithm.
void Test(vtkTable *, vtkStatisticalModel *, vtkTable *) override
Execute the calculations required by the Test option.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void Learn(vtkTable *, vtkTable *, vtkStatisticalModel *) override
Execute the calculations required by the Learn option.
bool Aggregate(vtkDataObjectCollection *, vtkStatisticalModel *) override
Given a collection of models, calculate aggregate model.
static vtkMultiCorrelativeStatistics * New()
void Assess(vtkTable *, vtkStatisticalModel *, vtkTable *) override
Execute the calculations required by the Assess option.
void SelectAssessFunctor(vtkTable *inData, vtkDataObject *inMeta, vtkStringArray *rowNames, AssessFunctor *&dfunc) override
Provide the appropriate assessment functor.
virtual void ComputeMedian(vtkTable *inData, vtkTable *outData)
Computes the median of inData with vtkOrderStatistics.
A class for univariate order statistics.
a base class for statistical modeling of other data
A base class for a functor that assesses data.
vtkStatisticsAlgorithm()
Return a new instance of a subclass named and configured by the algorithmParameters.
a vtkAbstractArray subclass for strings
Represent a string by its integer hash.
A table, which contains similar-typed columns of data.
Definition vtkTable.h:169
A type representing the union of many types.
Definition vtkVariant.h:162