Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
x
y
Typedefs
a
b
c
d
f
h
i
n
o
p
q
r
s
t
u
Enumerations
a
c
d
e
f
i
m
n
p
q
r
s
t
u
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
z
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
i
l
m
n
p
r
s
t
u
w
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Functions
c
e
h
i
m
o
p
q
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
x
z
Variables
a
b
c
e
g
i
l
m
n
p
r
s
t
v
x
y
Typedefs
a
b
c
d
e
f
h
i
l
m
n
p
q
r
s
t
u
Enumerator
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
src
extern
eigen3
unsupported
Eigen
src
NonLinearOptimization
fdjac1.h
Go to the documentation of this file.
1
namespace
Eigen
{
2
3
namespace
internal
{
4
5
template
<
typename
FunctorType,
typename
Scalar>
6
DenseIndex
fdjac1
(
7
const
FunctorType &Functor,
8
Matrix< Scalar, Dynamic, 1 >
&
x
,
9
Matrix< Scalar, Dynamic, 1 >
&fvec,
10
Matrix< Scalar, Dynamic, Dynamic >
&fjac,
11
DenseIndex
ml,
DenseIndex
mu,
12
Scalar
epsfcn)
13
{
14
using
std::sqrt
;
15
using
std::abs
;
16
17
typedef
DenseIndex
Index
;
18
19
/* Local variables */
20
Scalar
h;
21
Index
j, k;
22
Scalar
eps, temp;
23
Index
msum;
24
int
iflag;
25
Index
start, length;
26
27
/* Function Body */
28
const
Scalar
epsmch =
NumTraits<Scalar>::epsilon
();
29
const
Index
n
=
x
.size();
30
eigen_assert
(fvec.size()==
n
);
31
Matrix< Scalar, Dynamic, 1 >
wa1(
n
);
32
Matrix< Scalar, Dynamic, 1 >
wa2(
n
);
33
34
eps =
sqrt
((
std::max
)(epsfcn,epsmch));
35
msum = ml + mu + 1;
36
if
(msum >=
n
) {
37
/* computation of dense approximate jacobian. */
38
for
(j = 0; j <
n
; ++j) {
39
temp =
x
[j];
40
h = eps *
abs
(temp);
41
if
(h == 0.)
42
h = eps;
43
x
[j] = temp + h;
44
iflag = Functor(
x
, wa1);
45
if
(iflag < 0)
46
return
iflag;
47
x
[j] = temp;
48
fjac.col(j) = (wa1-fvec)/h;
49
}
50
51
}
else
{
52
/* computation of banded approximate jacobian. */
53
for
(k = 0; k < msum; ++k) {
54
for
(j = k; (msum<0) ? (j>
n
): (j<
n
); j += msum) {
55
wa2[j] =
x
[j];
56
h = eps *
abs
(wa2[j]);
57
if
(h == 0.) h = eps;
58
x
[j] = wa2[j] + h;
59
}
60
iflag = Functor(
x
, wa1);
61
if
(iflag < 0)
62
return
iflag;
63
for
(j = k; (msum<0) ? (j>
n
): (j<
n
); j += msum) {
64
x
[j] = wa2[j];
65
h = eps *
abs
(wa2[j]);
66
if
(h == 0.) h = eps;
67
fjac.col(j).
setZero
();
68
start = std::max<Index>(0,j-mu);
69
length = (
std::min
)(
n
-1, j+ml) - start + 1;
70
fjac.col(j).segment(start, length) = ( wa1.segment(start, length)-fvec.segment(start, length))/h;
71
}
72
}
73
}
74
return
0;
75
}
76
77
}
// end namespace internal
78
79
}
// end namespace Eigen
sqrt
const EIGEN_DEVICE_FUNC SqrtReturnType sqrt() const
Definition:
ArrayCwiseUnaryOps.h:152
Eigen
Definition:
common.h:73
eigen_assert
#define eigen_assert(x)
Definition:
Macros.h:579
Scalar
SCALAR Scalar
Definition:
common.h:84
abs
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE AbsReturnType abs() const
Definition:
ArrayCwiseUnaryOps.h:43
Eigen::internal::fdjac1
DenseIndex fdjac1(const FunctorType &Functor, Matrix< Scalar, Dynamic, 1 > &x, Matrix< Scalar, Dynamic, 1 > &fvec, Matrix< Scalar, Dynamic, Dynamic > &fjac, DenseIndex ml, DenseIndex mu, Scalar epsfcn)
Definition:
fdjac1.h:6
x
Scalar * x
Definition:
level1_cplx_impl.h:89
Eigen::DenseIndex
EIGEN_DEFAULT_DENSE_INDEX_TYPE DenseIndex
Definition:
Meta.h:25
min
#define min(a, b)
Definition:
datatypes.h:19
Eigen::Matrix< Scalar, Dynamic, 1 >
internal
Definition:
BandTriangularSolver.h:13
Eigen::PlainObjectBase::setZero
EIGEN_DEVICE_FUNC Derived & setZero(Index size)
Definition:
CwiseNullaryOp.h:515
n
PlainMatrixType mat * n
Definition:
eigenvalues.cpp:41
max
#define max(a, b)
Definition:
datatypes.h:20
Eigen::NumTraits
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Definition:
NumTraits.h:150
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition:
Meta.h:33
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:45