Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace 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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
c
d
e
f
g
i
k
l
m
n
p
q
r
s
t
u
Enumerator
a
b
c
d
e
f
g
h
i
j
k
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
z
Enumerations
a
b
c
d
f
k
l
m
n
o
p
r
s
t
v
z
Enumerator
_
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
Related Functions
:
a
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
u
v
Files
File List
File 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
k
l
m
n
o
p
q
r
s
t
u
v
x
z
Enumerations
Enumerator
b
c
e
f
g
i
l
m
n
o
p
r
s
t
u
v
x
y
z
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
gtsam
3rdparty
Eigen
bench
btl
generic_bench
utils
size_lin_log.hh
Go to the documentation of this file.
1
//=====================================================
2
// File : size_lin_log.hh
3
// Author : L. Plagne <laurent.plagne@edf.fr)>
4
// Copyright (C) EDF R&D, mar d�c 3 18:59:37 CET 2002
5
//=====================================================
6
//
7
// This program is free software; you can redistribute it and/or
8
// modify it under the terms of the GNU General Public License
9
// as published by the Free Software Foundation; either version 2
10
// of the License, or (at your option) any later version.
11
//
12
// This program is distributed in the hope that it will be useful,
13
// but WITHOUT ANY WARRANTY; without even the implied warranty of
14
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
// GNU General Public License for more details.
16
// You should have received a copy of the GNU General Public License
17
// along with this program; if not, write to the Free Software
18
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
//
20
#ifndef SIZE_LIN_LOG
21
#define SIZE_LIN_LOG
22
23
#include "
size_log.hh
"
24
25
template
<
class
Vector>
26
void
size_lin_log
(
const
int
nb_point,
const
int
/*size_min*/
,
const
int
size_max,
Vector
&
X
)
27
{
28
int
ten=10;
29
int
nine=9;
30
31
X
.resize(nb_point);
32
33
if
(nb_point>ten){
34
35
for
(
int
i
=0;
i
<nine;
i
++){
36
37
X
[
i
]=
i
+1;
38
39
}
40
41
Vector
log_size;
42
size_log
(nb_point-nine,ten,size_max,log_size);
43
44
for
(
int
i
=0;
i
<nb_point-nine;
i
++){
45
46
X
[
i
+nine]=log_size[
i
];
47
48
}
49
}
50
else
{
51
52
for
(
int
i
=0;
i
<nb_point;
i
++){
53
54
X
[
i
]=
i
+1;
55
56
}
57
}
58
59
// for (int i=0;i<nb_point;i++){
60
61
// INFOS("computed sizes : X["<<i<<"]="<<X[i]);
62
63
// }
64
65
}
66
67
#endif
68
69
70
X
#define X
Definition:
icosphere.cpp:20
size_lin_log
void size_lin_log(const int nb_point, const int, const int size_max, Vector &X)
Definition:
size_lin_log.hh:26
size_log.hh
size_log
void size_log(const int nb_point, const int size_min, const int size_max, Vector &X)
Definition:
size_log.hh:29
ceres::Vector
Eigen::Matrix< double, Eigen::Dynamic, 1 > Vector
Definition:
gtsam/3rdparty/ceres/eigen.h:38
i
int i
Definition:
BiCGSTAB_step_by_step.cpp:9
gtsam
Author(s):
autogenerated on Fri Mar 28 2025 03:03:39