1 | /*
|
---|
2 | * Licensed to the Apache Software Foundation (ASF) under one or more
|
---|
3 | * contributor license agreements. See the NOTICE file distributed with
|
---|
4 | * this work for additional information regarding copyright ownership.
|
---|
5 | * The ASF licenses this file to You under the Apache License, Version 2.0
|
---|
6 | * (the "License"); you may not use this file except in compliance with
|
---|
7 | * the License. You may obtain a copy of the License at
|
---|
8 | *
|
---|
9 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
10 | *
|
---|
11 | * Unless required by applicable law or agreed to in writing, software
|
---|
12 | * distributed under the License is distributed on an "AS IS" BASIS,
|
---|
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
14 | * See the License for the specific language governing permissions and
|
---|
15 | * limitations under the License.
|
---|
16 | */
|
---|
17 | package agents.anac.y2019.harddealer.math3.analysis.differentiation;
|
---|
18 |
|
---|
19 | import agents.anac.y2019.harddealer.math3.analysis.MultivariateMatrixFunction;
|
---|
20 |
|
---|
21 | /** Class representing the Jacobian of a multivariate vector function.
|
---|
22 | * <p>
|
---|
23 | * The rows iterate on the model functions while the columns iterate on the parameters; thus,
|
---|
24 | * the numbers of rows is equal to the dimension of the underlying function vector
|
---|
25 | * value and the number of columns is equal to the number of free parameters of
|
---|
26 | * the underlying function.
|
---|
27 | * </p>
|
---|
28 | * @since 3.1
|
---|
29 | */
|
---|
30 | public class JacobianFunction implements MultivariateMatrixFunction {
|
---|
31 |
|
---|
32 | /** Underlying vector-valued function. */
|
---|
33 | private final MultivariateDifferentiableVectorFunction f;
|
---|
34 |
|
---|
35 | /** Simple constructor.
|
---|
36 | * @param f underlying vector-valued function
|
---|
37 | */
|
---|
38 | public JacobianFunction(final MultivariateDifferentiableVectorFunction f) {
|
---|
39 | this.f = f;
|
---|
40 | }
|
---|
41 |
|
---|
42 | /** {@inheritDoc} */
|
---|
43 | public double[][] value(double[] point) {
|
---|
44 |
|
---|
45 | // set up parameters
|
---|
46 | final DerivativeStructure[] dsX = new DerivativeStructure[point.length];
|
---|
47 | for (int i = 0; i < point.length; ++i) {
|
---|
48 | dsX[i] = new DerivativeStructure(point.length, 1, i, point[i]);
|
---|
49 | }
|
---|
50 |
|
---|
51 | // compute the derivatives
|
---|
52 | final DerivativeStructure[] dsY = f.value(dsX);
|
---|
53 |
|
---|
54 | // extract the Jacobian
|
---|
55 | final double[][] y = new double[dsY.length][point.length];
|
---|
56 | final int[] orders = new int[point.length];
|
---|
57 | for (int i = 0; i < dsY.length; ++i) {
|
---|
58 | for (int j = 0; j < point.length; ++j) {
|
---|
59 | orders[j] = 1;
|
---|
60 | y[i][j] = dsY[i].getPartialDerivative(orders);
|
---|
61 | orders[j] = 0;
|
---|
62 | }
|
---|
63 | }
|
---|
64 |
|
---|
65 | return y;
|
---|
66 |
|
---|
67 | }
|
---|
68 |
|
---|
69 | }
|
---|