Back to FabImage Studio website
You are here: Start » Filter Reference » Conditional Processing » ClassifyByCase
Separates the elements of the input array into several output arrays, depending on the associated array of case indices.
Name | Type | Description | |
---|---|---|---|
![]() |
inArray | <T>Array | Elements to be classified |
![]() |
inCaseIndices | IntegerArray | Reference values corresponding to the input array elements |
![]() |
outCase0 | <T>Array | Elements corresponding to the case 0 |
![]() |
outCase1 | <T>Array | Elements corresponding to the case 1 |
![]() |
outCase2 | <T>Array | Elements corresponding to the case 2 |
![]() |
outCase3 | <T>Array | Elements corresponding to the case 3 |
![]() |
outCase4 | <T>Array | Elements corresponding to the case 4 |
![]() |
outCase5 | <T>Array | Elements corresponding to the case 5 |
![]() |
outCase6 | <T>Array | Elements corresponding to the case 6 |
![]() |
outCase7 | <T>Array | Elements corresponding to the case 7 |
The type of this filter is defined using the type variable T which represents any valid type. Read more.
Examples
![]() |
![]() |
inArray = {"Alice", "Bill", "Frank", "Patricia", "Thomas"} inCaseIndices = {0, 7, 1, 1, 1} |
outCase0 = {"Alice"} outCase1 = {"Frank", "Patricia", "Thomas"} outCase2 = {} outCase3 = {} outCase4 = {} outCase5 = {} outCase6 = {} outCase7 = {"Bill"} |
Errors
This filter can throw an exception to report error. Read how to deal with errors here: Error Handling
Error type | Description |
---|---|
DomainError | Inconsistent array lengths on input in ClassifyByCase. |
DomainError | Incorrect case index in ClassifyByCase. |
Complexity Level
This filter is available on Advanced Complexity Level.
Filter Group
This filters is member of Classify filter group.