public class AddFirstArrayToSecondArray extends Object
Constructor and Description |
---|
AddFirstArrayToSecondArray() |
Modifier and Type | Method and Description |
---|---|
static void |
at(double[] first,
double[] second,
int at)
Adds the first array element-wise to the second array starting at a certain
position.
|
public static void at(double[] first, double[] second, int at)
first
- The first array [N].second
- The second array [M] is modified in place. The length M of the
second array will not be changed.at
- The starting position of the addition in the second array.
Can be negative.Copyright © 2019. All rights reserved.