-
Notifications
You must be signed in to change notification settings - Fork 2
/
vec_utils.cpp
201 lines (182 loc) · 4.01 KB
/
vec_utils.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#include <algorithm>
using namespace std;
// DWJ 03/27/13 Comment for ssh push
// DWJ 03/27/13 Comment after documents branch is created.
double r8_huge ( ){/*{{{*/
//****************************************************************************80
//
// Purpose:
//
// R8_HUGE returns a "huge" R8.
//
// Discussion:
//
// The value returned by this function is NOT required to be the
// maximum representable R8. This value varies from machine to machine,
// from compiler to compiler, and may cause problems when being printed.
// We simply want a "very large" but non-infinite number.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 06 October 2007
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Output, double R8_HUGE, a "huge" R8 value.
//
double value;
value = 1.0E+30;
return value;
}/*}}}*/
//****************************************************************************80
double r8vec_max ( int n, double r8vec[] , double missing_value){/*{{{*/
//****************************************************************************80
//
// Purpose:
//
// R8VEC_MAX returns the value of the maximum element in an R8VEC.
//
// Discussion:
//
// An R8VEC is a vector of R8's.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 22 August 2010
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int N, the number of entries in the array.
//
// Input, double R8VEC[N], a pointer to the first entry of the array.
//
// Output, double R8VEC_MAX, the value of the maximum element. This
// is set to 0.0 if N <= 0.
//
int i;
double value;
if ( n <= 0 )
{
value = 0.0;
}
value = -1.0e34;
for ( i = 0; i < n; i++ )
{
if(r8vec[i] != missing_value)
value = max(value, r8vec[i]);
}
return value;
}/*}}}*/
//****************************************************************************80
double r8vec_min ( int n, double r8vec[] , double missing_value){/*{{{*/
//****************************************************************************80
//
// Purpose:
//
// R8VEC_MIN returns the value of the minimum element in an R8VEC.
//
// Discussion:
//
// An R8VEC is a vector of R8's.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 02 July 2005
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int N, the number of entries in the array.
//
// Input, double R8VEC[N], the array to be checked.
//
// Output, double R8VEC_MIN, the value of the minimum element.
//
int i;
double value;
value = r8_huge ( );
if ( n <= 0 )
{
return value;
}
for ( i = 0; i < n; i++ )
{
if(r8vec[i] != missing_value)
value = min(value, r8vec[i]);
}
return value;
}/*}}}*/
//****************************************************************************80
void r8vec_min_max ( int n, double r8vec[], double &min, double&max, double missing_value ){/*{{{*/
//****************************************************************************80
//
// Purpose:
//
// R8VEC_MIN_MAX returns the value of the minimum and maximum element in an R8VEC.
//
// Discussion:
//
// An R8VEC is a vector of R8's.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 02 July 2005
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int N, the number of entries in the array.
//
// Input, double R8VEC[N], the array to be checked.
//
// Output, double R8VEC_MIN, the value of the minimum element.
//
// Output, double R8VEC_MAX, the value of the maximum element.
//
int i;
if(n <= 0){
min = r8_huge();
max = 0.0;
return;
}
min = r8_huge();
max = -1e34;
for ( i = 0; i < n; i++ )
{
if(r8vec[i] != missing_value){
min = std::min(r8vec[i], min);
max = std::max(r8vec[i], max);
}
}
return;
}/*}}}*/