public class Multiplication extends MathOperationBinary
Operation |
Output |
|||
|---|---|---|---|---|
|
|
|||
|
|
Input 1 |
Input 2 |
Beginning Index |
Length of Subset |
Operation |
|---|---|---|---|---|
| Well | Well | +/- | +/- | Performs the operation using the values in the two wells |
| Well | Array | +/- | +/- | Performs the operation using the values in the array and the values in the well |
| Well | Collection | +/- | +/- | Performs the operation using the values in the collection and the values in the well |
| Well | Constant | +/- | +/- | Performs the operation using the constant value and each value in the well |
| Set | Set | +/- | +/- | Performs the operation on the values in each matching pair of wells in the two sets |
| Set | Array | +/- | +/- | Performs the operation using the values in the array and the values in each well of the set |
| Set | Collection | +/- | +/- | Performs the operation using the values in the collection and the values in each well of the set |
| Set | Constant | +/- | +/- | Performs the operation using the constant and each value in each well of the set |
| Plate | Plate | +/- | +/- | Performs the operation on the values in each matching pair of wells in the two plates |
| Plate | Array | +/- | +/- | Performs the operation using the values in the array and the values in each well of the plate |
| Plate | Collection | +/- | +/- | Performs the operation using the values in the collection and the values in each well of the plate |
| Plate | Constant | +/- | +/- | Performs the operation using the constant and each value in each well of the plate |
| Stack | Stack | +/- | +/- | Performs the operation on the values in each matching pair of wells in each matching plate in the stack |
| Stack | Array | +/- | +/- | Performs the operation using the values in the array and the values in each well of each plate in the stack |
| Stack | Collection | +/- | +/- | Performs the operation using the values in the collection and the values in each well of each plate in the stack |
| Stack | Constant | +/- | +/- | Performs the operation using the constant and each value in each well of each plate in the stack |
| Constructor and Description |
|---|
Multiplication() |
| Modifier and Type | Method and Description |
|---|---|
List<Integer> |
calculate(List<Integer> list,
Collection<Integer> collection)
Multiplies the list values by the values within the collection.
|
List<Integer> |
calculate(List<Integer> list,
Collection<Integer> collection,
int begin,
int length)
Multiplies the list values by the values within the collection.
|
List<Integer> |
calculate(List<Integer> list,
int constant)
Multiplies the values in the list by the constant.
|
List<Integer> |
calculate(List<Integer> list,
int[] array)
Multiplies the list by the values within the array.
|
List<Integer> |
calculate(List<Integer> list,
int[] array,
int begin,
int length)
Multiplies the list by the values within the array between the indices.
|
List<Integer> |
calculate(List<Integer> list1,
List<Integer> list2)
Multiplies the values in the first list by the values in the second list and
returns the result.
|
List<Integer> |
calculate(List<Integer> list1,
List<Integer> list2,
int begin,
int length)
Multiplies the values in the first list by the values in the second list and
returns the result using the values between the indices.
|
List<Integer> |
calculateStrict(List<Integer> list,
Collection<Integer> collection)
Multiplies the list values by the values within the collection.
|
List<Integer> |
calculateStrict(List<Integer> list,
Collection<Integer> collection,
int begin,
int length)
Multiplies the list values by the values within the collection between
the indices.
|
List<Integer> |
calculateStrict(List<Integer> list,
int[] array)
Multiplies the list values by the values within the array.
|
List<Integer> |
calculateStrict(List<Integer> list,
int[] array,
int begin,
int length)
Multiplies the list values by the values within the array between the indices.
|
List<Integer> |
calculateStrict(List<Integer> list1,
List<Integer> list2)
Multiplies the values in the first list by the values in the second list and
returns the result.
|
List<Integer> |
calculateStrict(List<Integer> list1,
List<Integer> list2,
int begin,
int length)
Multiplies the lists and returns the result using the values between the indices.
|
plates, plates, plates, plates, plates, plates, plates, platesStrict, platesStrict, platesStrict, platesStrict, platesStrict, platesStrict, sets, sets, sets, sets, sets, sets, sets, setsStrict, setsStrict, setsStrict, setsStrict, setsStrict, setsStrict, stacks, stacks, stacks, stacks, stacks, stacks, stacks, stacksStrict, stacksStrict, stacksStrict, stacksStrict, stacksStrict, stacksStrict, wells, wells, wells, wells, wells, wells, wells, wellsStrict, wellsStrict, wellsStrict, wellsStrict, wellsStrict, wellsStrictpublic List<Integer> calculate(List<Integer> list1, List<Integer> list2)
calculate in class MathOperationBinaryList - list1 the first listList - list2 the second listpublic List<Integer> calculateStrict(List<Integer> list1, List<Integer> list2)
calculateStrict in class MathOperationBinaryList - list1 the first listList - list2 the second listpublic List<Integer> calculate(List<Integer> list1, List<Integer> list2, int begin, int length)
calculate in class MathOperationBinaryList - list1 the first listList - list2 the second listint - begin beginning index of the subsetint - length length of the subsetpublic List<Integer> calculateStrict(List<Integer> list1, List<Integer> list2, int begin, int length)
calculateStrict in class MathOperationBinaryList - list1 the first listList - list2 the second listint - begin beginning index of the subsetint - length length of the subsetpublic List<Integer> calculate(List<Integer> list, int constant)
calculate in class MathOperationBinaryList - list the listint - constant the constant valuepublic List<Integer> calculate(List<Integer> list, int[] array)
calculate in class MathOperationBinaryList - list the listint[] - array the arraypublic List<Integer> calculate(List<Integer> list, int[] array, int begin, int length)
calculate in class MathOperationBinaryList - list the listint[] - array the arrayint - begin beginning index of the subsetint - length length of the subsetpublic List<Integer> calculate(List<Integer> list, Collection<Integer> collection)
calculate in class MathOperationBinaryList - list the listCollection - collection the collection of valuespublic List<Integer> calculate(List<Integer> list, Collection<Integer> collection, int begin, int length)
calculate in class MathOperationBinaryList - list the listCollection - collection the collection of valuesint - begin beginning index of the subsetint - length length of the subsetpublic List<Integer> calculateStrict(List<Integer> list, int[] array)
calculateStrict in class MathOperationBinaryList - list the listint[] - array the arraypublic List<Integer> calculateStrict(List<Integer> list, int[] array, int begin, int length)
calculateStrict in class MathOperationBinaryList - list the listint[] - array the arrayint - begin beginning index of the subsetint - length length of the subsetpublic List<Integer> calculateStrict(List<Integer> list, Collection<Integer> collection)
calculateStrict in class MathOperationBinaryList - list the listCollection - collection the collectionpublic List<Integer> calculateStrict(List<Integer> list, Collection<Integer> collection, int begin, int length)
calculateStrict in class MathOperationBinaryList - list the listCollection - collection the collectionint - begin beginning index of the subsetint - length length of the subsetCopyright © 2017. All rights reserved.