|
AssociationRuleMatcher< T> . Transform Method (SortedSet< T> [] ,SortedSet< T> [] [] )
|
Applies the transformation to an input, producing an associated output.
Namespace:
Accord.MachineLearning.Rules
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntaxpublic SortedSet<T>[][] Transform(
SortedSet<T>[] input,
SortedSet<T>[][] result
)
Public Function Transform (
input As SortedSet(Of T)(),
result As SortedSet(Of T)()()
) As SortedSet(Of T)()()
Request Example
View SourceParameters
- input
- Type:System.Collections.Generic.SortedSet<T>[]
The input data to which the transformation should be applied. - result
- Type:System.Collections.Generic.SortedSet<T>[][]
An array where the distances will be stored,
avoiding unnecessary memory allocations.
Return Value
Type:
SortedSet<T>[][]
The output generated by applying this transformation to the given input.
Implements
ITransform<TInput, TOutput>.Transform(TInput[],TOutput[])
See Also