-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvec_utils.cpp
274 lines (252 loc) · 5.11 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#include <algorithm>
using namespace std;
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 r8_max ( double x, double y ){/*{{{*/
//****************************************************************************80
//
// Purpose:
//
// R8_MAX returns the maximum of two R8's.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 18 August 2004
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, double X, Y, the quantities to compare.
//
// Output, double R8_MAX, the maximum of X and Y.
//
double value;
if ( y < x )
{
value = x;
}
else
{
value = y;
}
return value;
}/*}}}*/
//****************************************************************************80
double r8_min ( double x, double y ){/*{{{*/
//****************************************************************************80
//
// Purpose:
//
// R8_MIN returns the minimum of two R8's.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 18 August 2004
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, double X, Y, the quantities to compare.
//
// Output, double R8_MIN, the minimum of X and Y.
//
double value;
if ( y > x )
{
value = x;
}
else
{
value = y;
}
return value;
}/*}}}*/
//****************************************************************************80
double r8vec_max ( int n, double r8vec[] ){/*{{{*/
//****************************************************************************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 = r8vec[0];
for ( i = 1; i < n; i++ )
{
if(r8vec[i] > value)
value = r8vec[i];
}
return value;
}/*}}}*/
//****************************************************************************80
double r8vec_min ( int n, double r8vec[] ){/*{{{*/
//****************************************************************************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] < value)
value = r8vec[i];
}
return value;
}/*}}}*/
//****************************************************************************80
void r8vec_min_max ( int n, double r8vec[], double &min, double&max ){/*{{{*/
//****************************************************************************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 = r8vec[0];
max = r8vec[0];
for ( i = 1; i < n; i++ )
{
min = std::min(r8vec[i], min);
max = std::max(r8vec[i], max);
}
return;
}/*}}}*/