MtasDataDoubleOperations.java.html
7.46 KB
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
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MtasDataDoubleOperations.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">MTAS</a> > <a href="index.source.html" class="el_package">mtas.codec.util.collector</a> > <span class="el_source">MtasDataDoubleOperations.java</span></div><h1>MtasDataDoubleOperations.java</h1><pre class="source lang-java linenums">package mtas.codec.util.collector;
import java.io.Serializable;
/**
* The Class MtasDataDoubleOperations.
*/
<span class="nc" id="L8">class MtasDataDoubleOperations</span>
implements MtasDataOperations<Double, Double>, Serializable {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 1L;
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataOperations#product11(java.lang.
* Number, java.lang.Number)
*/
@Override
public Double product11(Double arg1, Double arg2) {
<span class="nc bnc" id="L22" title="All 4 branches missed."> if (arg1 == null || arg2 == null) {</span>
<span class="nc" id="L23"> return Double.NaN;</span>
} else {
<span class="nc" id="L25"> return arg1 * arg2;</span>
}
}
/*
* (non-Javadoc)
*
* @see
* mtas.codec.util.DataCollector.MtasDataOperations#add11(java.lang.Number,
* java.lang.Number)
*/
@Override
public Double add11(Double arg1, Double arg2) {
<span class="nc bnc" id="L38" title="All 4 branches missed."> if (arg1 == null || arg2 == null) {</span>
<span class="nc" id="L39"> return Double.NaN;</span>
} else {
<span class="nc" id="L41"> return arg1 + arg2;</span>
}
}
/*
* (non-Javadoc)
*
* @see
* mtas.codec.util.DataCollector.MtasDataOperations#add22(java.lang.Number,
* java.lang.Number)
*/
@Override
public Double add22(Double arg1, Double arg2) {
<span class="nc bnc" id="L54" title="All 4 branches missed."> if (arg1 == null || arg2 == null) {</span>
<span class="nc" id="L55"> return Double.NaN;</span>
} else {
<span class="nc" id="L57"> return arg1 + arg2;</span>
}
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataOperations#subtract12(java.lang.
* Number, java.lang.Number)
*/
@Override
public Double subtract12(Double arg1, Double arg2) {
<span class="nc bnc" id="L69" title="All 4 branches missed."> if (arg1 == null || arg2 == null) {</span>
<span class="nc" id="L70"> return Double.NaN;</span>
} else {
<span class="nc" id="L72"> return arg1 - arg2;</span>
}
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataOperations#divide1(java.lang.
* Number, long)
*/
@Override
public Double divide1(Double arg1, long arg2) {
<span class="nc bnc" id="L84" title="All 2 branches missed."> if (arg1 == null) {</span>
<span class="nc" id="L85"> return Double.NaN;</span>
} else {
<span class="nc" id="L87"> return arg1 / arg2;</span>
}
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataOperations#divide2(java.lang.
* Number, long)
*/
@Override
public Double divide2(Double arg1, long arg2) {
<span class="nc bnc" id="L99" title="All 2 branches missed."> if (arg1 == null) {</span>
<span class="nc" id="L100"> return Double.NaN;</span>
} else {
<span class="nc" id="L102"> return arg1 / arg2;</span>
}
}
/*
* (non-Javadoc)
*
* @see
* mtas.codec.util.DataCollector.MtasDataOperations#min11(java.lang.Number,
* java.lang.Number)
*/
@Override
public Double min11(Double arg1, Double arg2) {
<span class="nc bnc" id="L115" title="All 4 branches missed."> if (arg1 == null || arg2 == null) {</span>
<span class="nc" id="L116"> return Double.NaN;</span>
} else {
<span class="nc" id="L118"> return Math.min(arg1, arg2);</span>
}
}
/*
* (non-Javadoc)
*
* @see
* mtas.codec.util.DataCollector.MtasDataOperations#max11(java.lang.Number,
* java.lang.Number)
*/
@Override
public Double max11(Double arg1, Double arg2) {
<span class="nc bnc" id="L131" title="All 4 branches missed."> if (arg1 == null || arg2 == null) {</span>
<span class="nc" id="L132"> return Double.NaN;</span>
} else {
<span class="nc" id="L134"> return Math.max(arg1, arg2);</span>
}
}
/*
* (non-Javadoc)
*
* @see
* mtas.codec.util.DataCollector.MtasDataOperations#exp2(java.lang.Number)
*/
@Override
public Double exp2(Double arg1) {
<span class="nc bnc" id="L146" title="All 2 branches missed."> if (arg1 == null) {</span>
<span class="nc" id="L147"> return Double.NaN;</span>
} else {
<span class="nc" id="L149"> return Math.exp(arg1);</span>
}
}
/*
* (non-Javadoc)
*
* @see
* mtas.codec.util.DataCollector.MtasDataOperations#sqrt2(java.lang.Number)
*/
@Override
public Double sqrt2(Double arg1) {
<span class="nc bnc" id="L161" title="All 2 branches missed."> if (arg1 == null) {</span>
<span class="nc" id="L162"> return Double.NaN;</span>
} else {
<span class="nc" id="L164"> return Math.sqrt(arg1);</span>
}
}
/*
* (non-Javadoc)
*
* @see
* mtas.codec.util.DataCollector.MtasDataOperations#log1(java.lang.Number)
*/
@Override
public Double log1(Double arg1) {
<span class="nc bnc" id="L176" title="All 2 branches missed."> if (arg1 == null) {</span>
<span class="nc" id="L177"> return Double.NaN;</span>
} else {
<span class="nc" id="L179"> return Math.log(arg1);</span>
}
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataOperations#createVector1(int)
*/
@Override
public Double[] createVector1(int length) {
<span class="nc" id="L190"> return new Double[length];</span>
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataOperations#createVector2(int)
*/
@Override
public Double[] createVector2(int length) {
<span class="nc" id="L200"> return new Double[length];</span>
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataOperations#createMatrix1(int)
*/
@Override
public Double[][] createMatrix1(int length) {
<span class="nc" id="L210"> return new Double[length][];</span>
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataOperations#getZero1()
*/
@Override
public Double getZero1() {
<span class="nc" id="L220"> return Double.valueOf(0);</span>
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataOperations#getZero2()
*/
@Override
public Double getZero2() {
<span class="nc" id="L230"> return Double.valueOf(0);</span>
}
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.7.9.201702052155</span></div></body></html>