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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
|
// SPDX-License-Identifier: Apache-2.0
//
// Copyright 2008-2016 Conrad Sanderson (http://conradsanderson.id.au)
// Copyright 2008-2016 National ICT Australia (NICTA)
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ------------------------------------------------------------------------
//! \addtogroup fn_norm
//! @{
template<typename T1>
arma_warn_unused
inline
typename enable_if2< is_arma_type<T1>::value, typename T1::pod_type >::result
norm
(
const T1& X,
const uword k = uword(2),
const typename arma_real_or_cx_only<typename T1::elem_type>::result* junk = nullptr
)
{
arma_extra_debug_sigprint();
arma_ignore(junk);
typedef typename T1::pod_type T;
const Proxy<T1> P(X);
if(P.get_n_elem() == 0) { return T(0); }
const bool is_vec = (T1::is_xvec) || (T1::is_row) || (T1::is_col) || (P.get_n_rows() == 1) || (P.get_n_cols() == 1);
if(is_vec)
{
if(k == uword(1)) { return op_norm::vec_norm_1(P); }
if(k == uword(2)) { return op_norm::vec_norm_2(P); }
arma_debug_check( (k == 0), "norm(): unsupported vector norm type" );
return op_norm::vec_norm_k(P, int(k));
}
else
{
const quasi_unwrap<typename Proxy<T1>::stored_type> U(P.Q);
if(k == uword(1)) { return op_norm::mat_norm_1(U.M); }
if(k == uword(2)) { return op_norm::mat_norm_2(U.M); }
arma_stop_logic_error("norm(): unsupported matrix norm type");
}
return T(0);
}
template<typename T1>
arma_warn_unused
inline
typename enable_if2< is_arma_type<T1>::value, typename T1::pod_type >::result
norm
(
const T1& X,
const char* method,
const typename arma_real_or_cx_only<typename T1::elem_type>::result* junk = nullptr
)
{
arma_extra_debug_sigprint();
arma_ignore(junk);
typedef typename T1::pod_type T;
const Proxy<T1> P(X);
if(P.get_n_elem() == 0) { return T(0); }
const char sig = (method != nullptr) ? method[0] : char(0);
const bool is_vec = (T1::is_xvec) || (T1::is_row) || (T1::is_col) || (P.get_n_rows() == 1) || (P.get_n_cols() == 1);
if(is_vec)
{
if( (sig == 'i') || (sig == 'I') || (sig == '+') ) { return op_norm::vec_norm_max(P); }
if( (sig == '-') ) { return op_norm::vec_norm_min(P); }
if( (sig == 'f') || (sig == 'F') ) { return op_norm::vec_norm_2(P); }
arma_stop_logic_error("norm(): unsupported vector norm type");
}
else
{
if( (sig == 'i') || (sig == 'I') || (sig == '+') ) // inf norm
{
const quasi_unwrap<typename Proxy<T1>::stored_type> U(P.Q);
return op_norm::mat_norm_inf(U.M);
}
else
if( (sig == 'f') || (sig == 'F') )
{
return op_norm::vec_norm_2(P);
}
arma_stop_logic_error("norm(): unsupported matrix norm type");
}
return T(0);
}
template<typename T1>
arma_warn_unused
inline
typename enable_if2< is_arma_type<T1>::value, double >::result
norm
(
const T1& X,
const uword k = uword(2),
const typename arma_integral_only<typename T1::elem_type>::result* junk = nullptr
)
{
arma_extra_debug_sigprint();
arma_ignore(junk);
if(resolves_to_colvector<T1>::value) { return norm(conv_to< Col<double> >::from(X), k); }
if(resolves_to_rowvector<T1>::value) { return norm(conv_to< Row<double> >::from(X), k); }
return norm(conv_to< Mat<double> >::from(X), k);
}
template<typename T1>
arma_warn_unused
inline
typename enable_if2< is_arma_type<T1>::value, double >::result
norm
(
const T1& X,
const char* method,
const typename arma_integral_only<typename T1::elem_type>::result* junk = nullptr
)
{
arma_extra_debug_sigprint();
arma_ignore(junk);
if(resolves_to_colvector<T1>::value) { return norm(conv_to< Col<double> >::from(X), method); }
if(resolves_to_rowvector<T1>::value) { return norm(conv_to< Row<double> >::from(X), method); }
return norm(conv_to< Mat<double> >::from(X), method);
}
//
// norms for sparse matrices
template<typename T1>
arma_warn_unused
inline
typename enable_if2< is_arma_sparse_type<T1>::value, typename T1::pod_type >::result
norm
(
const T1& expr,
const uword k = uword(2),
const typename arma_real_or_cx_only<typename T1::elem_type>::result* junk = nullptr
)
{
arma_extra_debug_sigprint();
arma_ignore(junk);
typedef typename T1::elem_type eT;
typedef typename T1::pod_type T;
if(is_SpSubview_col<T1>::value)
{
const SpSubview_col<eT>& sv = reinterpret_cast< const SpSubview_col<eT>& >(expr);
if(sv.n_rows == sv.m.n_rows)
{
const SpMat<eT>& m = sv.m;
const uword col = sv.aux_col1;
const eT* mem = &(m.values[ m.col_ptrs[col] ]);
return spop_norm::vec_norm_k(mem, sv.n_nonzero, k);
}
}
const unwrap_spmat<T1> U(expr);
const SpMat<eT>& X = U.M;
if(X.n_nonzero == 0) { return T(0); }
const bool is_vec = (T1::is_xvec) || (T1::is_row) || (T1::is_col) || (X.n_rows == 1) || (X.n_cols == 1);
if(is_vec)
{
return spop_norm::vec_norm_k(X.values, X.n_nonzero, k);
}
else
{
if(k == uword(1)) { return spop_norm::mat_norm_1(X); }
if(k == uword(2)) { return spop_norm::mat_norm_2(X); }
arma_stop_logic_error("norm(): unsupported or unimplemented norm type for sparse matrices");
}
return T(0);
}
template<typename T1>
arma_warn_unused
inline
typename enable_if2< is_arma_sparse_type<T1>::value, typename T1::pod_type >::result
norm
(
const T1& expr,
const char* method,
const typename arma_real_or_cx_only<typename T1::elem_type>::result* junk = nullptr
)
{
arma_extra_debug_sigprint();
arma_ignore(junk);
typedef typename T1::elem_type eT;
typedef typename T1::pod_type T;
const unwrap_spmat<T1> U(expr);
const SpMat<eT>& X = U.M;
if(X.n_nonzero == 0) { return T(0); }
// create a fake dense vector to allow reuse of code for dense vectors
Col<eT> fake_vector( access::rwp(X.values), X.n_nonzero, false );
const Proxy< Col<eT> > P_fake_vector(fake_vector);
const char sig = (method != nullptr) ? method[0] : char(0);
const bool is_vec = (T1::is_xvec) || (T1::is_row) || (T1::is_col) || (X.n_rows == 1) || (X.n_cols == 1);
if(is_vec)
{
if( (sig == 'i') || (sig == 'I') || (sig == '+') ) // max norm
{
return op_norm::vec_norm_max(P_fake_vector);
}
else
if(sig == '-') // min norm
{
const T val = op_norm::vec_norm_min(P_fake_vector);
return (X.n_nonzero < X.n_elem) ? T((std::min)(T(0), val)) : T(val);
}
else
if( (sig == 'f') || (sig == 'F') )
{
return op_norm::vec_norm_2(P_fake_vector);
}
arma_stop_logic_error("norm(): unsupported vector norm type");
}
else
{
if( (sig == 'i') || (sig == 'I') || (sig == '+') ) // inf norm
{
return spop_norm::mat_norm_inf(X);
}
else
if( (sig == 'f') || (sig == 'F') )
{
return op_norm::vec_norm_2(P_fake_vector);
}
arma_stop_logic_error("norm(): unsupported matrix norm type");
}
return T(0);
}
//
// approximate norms
template<typename T1>
arma_warn_unused
inline
typename T1::pod_type
norm2est
(
const Base<typename T1::elem_type, T1>& X,
const typename T1::pod_type tolerance = 0,
const uword max_iter = 100,
const typename arma_real_or_cx_only<typename T1::elem_type>::result* junk = nullptr
)
{
arma_extra_debug_sigprint();
arma_ignore(junk);
return op_norm2est::norm2est(X.get_ref(), tolerance, max_iter);
}
template<typename T1>
arma_warn_unused
inline
typename T1::pod_type
norm2est
(
const SpBase<typename T1::elem_type, T1>& X,
const typename T1::pod_type tolerance = 0,
const uword max_iter = 100,
const typename arma_real_or_cx_only<typename T1::elem_type>::result* junk = nullptr
)
{
arma_extra_debug_sigprint();
arma_ignore(junk);
return op_norm2est::norm2est(X.get_ref(), tolerance, max_iter);
}
//! @}
|