-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMathematical.java
More file actions
577 lines (538 loc) · 12.5 KB
/
Copy pathMathematical.java
File metadata and controls
577 lines (538 loc) · 12.5 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
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
// ============================================================================
//
// Copyright (c) 2006-2015, Talend Inc.
//
// This source code has been automatically generated by_Talend Open Studio for Big Data
// / 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.
//
// ============================================================================
package routines;
public class Mathematical {
/**
* Returns the absolute (positive) numeric value of an expression.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(10)
*
* {example} ABS(-10) # 10
*/
public static double ABS(double a) {
return Math.abs(a);
}
/**
* Calculates the trigonometric arc-cosine of an expression.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(0.15)
*
* {example} ACOS(0.15)
*
*/
public static double ACOS(double a) {
return Math.acos(a);
}
/**
* Calculates the trigonometric arc-sine of an expression.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(0.15)
*
* {example} ASIN(0.15)
*
*/
public static double ASIN(double a) {
return Math.asin(a);
}
/**
* Calculates the trigonometric arctangent of an expression.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14)
*
* {example} ATAN(3.14)
*
*/
public static double ATAN(double a) {
return Math.atan(a);
}
/**
* Performs a bitwise AND of two integers.
*
* {talendTypes} int | Integer
*
* {Category} Mathematical
*
* {param} int(1) a :integer
*
* {param} int(2) b :integer
*
* {example} BITAND(1,1)
*
*/
public static int BITAND(int a, int b) {
return a & b;
}
/**
* Performs a bitwise NOT of a integers.
*
* {talendTypes} int | Integer
*
* {Category} Mathematical
*
* {param} int(10)
*
* {example} BITNOT(10)
*/
public static int BITNOT(int a) {
return ~a;
}
/**
* Performs a bitwise OR of two integers.
*
* {talendTypes} int | Integer
*
* {Category} Mathematical
*
* {param} int(10) a: integer
*
* {param} int(10) b: integer
*
* {example} BITOR(10,10)
*
*
*/
public static int BITOR(int a, int b) {
return a | b;
}
// BITRESET( ) Resets one bit of an integer.
// BITSET( ) Sets one bit of an integer.
// BITTEST( ) Tests one bit of an integer.
/**
* Performs a bitwise XOR of two integers.
*
* {talendTypes} int | Integer
*
* {Category} Mathematical
*
* {param} int(10) a: integer
*
* {param} int(10) b: integer
*
* {example} BITXOR(10,10)
*/
public static int BITXOR(int a, int b) {
return a ^ b;
}
/**
* Calculates the trigonometric cosine of an angle.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14)
*
* {example} COS(3.14)
*
*/
public static double COS(double a) {
return Math.cos(a);
}
/**
* Calculates the hyperbolic cosine of an expression.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14)
*
* {example} COSH(3.14)
*
*
*/
public static double COSH(double a) {
return Math.cosh(a);
}
/**
* Outputs the whole part of the real division of two real numbers.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14) a: real number
*
* {param} double(3.14) b: real number
*
* {example} DIV(3.14,3.14)
*
*/
public static int DIV(double a, double b) {
return (int) (a / b);
}
/**
* Calculates the result of base 'e' raised to the power designated by the value of the expression.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14)
*
* {example} EXP(3.14)
*/
public static double EXP(double a) {
return Math.exp(a);
}
/**
* Calculates the integer numeric value of an expression.
*
* {talendTypes} int | Integer
*
* {Category} Mathematical
*
* {param} string("100")
*
* {example} INT(\"100\")
*/
public static int INT(String e) {
return Integer.valueOf(e);
}
// FADD( ) Performs floating-point addition on two numeric values. This function is provided for compatibility with
// existing software.
// FDIV( ) Performs floating-point division on two numeric values.
//
/**
* Converts a floating-point number to a string with a fixed precision. FFIX is provided for compatibility
* with existing software.
*
* {talendTypes} String
*
* {Category} Mathematical
*
* {param} double(3.1415926) d: real number
*
* {param} int(2) precision: precision
*
* {example}FFIX(3.1415926,2)
*/
public static String FFIX(double d, int precision) {
double p = Math.pow(10, precision);
d = d * p;
d = Math.round(d) / p;
return Double.toString(d);
}
/**
* Rounds a number to a string with a precision of 14.
*
* {talendTypes} String
*
* {Category} Mathematical
*
* {param} double(3.14)
*
* {example} FFLT(3.14)
*
*/
public static String FFLT(double d) {
return Mathematical.FFIX(d, 14);
}
// FMUL( ) Performs floating-point multiplication on two numeric values. This function is provided for compatibility
// with existing software.
// FSUB( ) Performs floating-point subtraction on two numeric values.
/**
* Calculates the natural logarithm of an expression in base 'e'.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14)
*
* {example} LN(3.14)
*
*/
public static double LN(double a) {
return Math.log(a) / Math.E;
}
/**
* Calculates the modulo (the remainder) of two expressions.
*
* {talendTypes} String
*
* {Category} Mathematical
*
* {param} double(3) a: double
*
* {param} double(2) b: double
*
* {example} MOD(3,2)
*
*/
public static double MOD(double a, double b) {
return a % b;
}
public static void main(String[] args) {
Mathematical.MOD(3, 2);
}
/**
* Returns the arithmetic additive inverse of the value of the argument.
*
*
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14)
*
* {example} NEG(3.14)
*/
public static double NEG(double a) {
return -1 * a;
}
/**
* Returns true (1) if the argument is a numeric data type; otherwise, returns false (0).
*
* {talendTypes} int | Integer
*
* {Category} Mathematical
*
* {param} string("1")
*
* {example} NUM(\"1\")
*
*/
public static int NUM(String e) {
if (e.matches("\\d+")) { //$NON-NLS-1$
return 1;
}
return 0;
}
// PWR( ) Calculates the value of an expression when raised to a specified
// power.
/**
* Converts a numeric expression into a real number without loss of accuracy.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} string("3.14")
*
* {example} REAL(\"3.14\")
*
*/
public static double REAL(String e) {
return Double.valueOf(e);
}
// REM( ) Calculates the value of the remainder after integer division is
// performed.
//
/**
* Generates a random number between zero and a specified number minus one.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14)
*
* {example} RND(3.14)
*
*/
public static double RND(double a) {
return Math.random() * a;
}
/**
* Adds two string numbers and returns the result as a string number.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} string("10") a: string number
*
* {param} string("10") b: string number
*
* {example} SADD(\"10\",\"10\")
*
*/
public static double SADD(String a, String b) {
return Double.valueOf(a) + Double.valueOf(b);
}
/**
* Compares two string numbers.
*
* {talendTypes} int | Integer
*
* {Category} Mathematical
*
* {param} string("12") a: string
*
* {param} string("13") b: string
*
* {example} SCMP(\"12\",\"13\")
*
*/
public static int SCMP(String a, String b) {
double da = Double.valueOf(a);
double db = Double.valueOf(b);
if (da > db) {
return 1;
} else if (da == db) {
return 0;
} else {
return -1;
}
}
/**
* Outputs the quotient of the whole division of two integers.
*
* {talendTypes} int | Integer
*
* {Category} Mathematical
*
* {param} int(10) a: int
*
* {param} int(10) b: int
*
* {example} SDIV(10,20)
*
*/
public static int SDIV(int a, int b) {
return (int) (a / b);
}
/**
* Calculates the trigonometric sine of an angle.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14)
*
* {example} SIN(3.14)
*
*/
public static double SIN(double a) {
return Math.sin(a);
}
/**
* Calculates the hyperbolic sine of an expression.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14)
*
* {example} SINH(3.14)
*
*/
public static double SINH(double a) {
return Math.sinh(a);
}
/**
* Multiplies two string numbers.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} string("3.14") a: string
*
* {param} string("3.14") b: string
*
* {example} SMUL(\"3.14\",\"3.14\")
*
*/
public static double SMUL(String a, String b) {
return Double.valueOf(a) * Double.valueOf(b);
}
/**
* Calculates the square root of a number.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(4)
*
* {example} SQRT(4.0)
*
*/
public static double SQRT(double a) {
return Math.sqrt(a);
}
/**
* Subtracts one string number from another and returns the result as a string number.
*
* {talendTypes} String
*
* {Category} Mathematical
*
* {param} string(20) a: string
*
* {param} string(10) b: string
*
* {example} SSUB(\"20\",\"10\")
*
*/
public static String SSUB(String a, String b) {
return Double.toString(Double.valueOf(a) - Double.valueOf(b));
}
/**
* Calculates the trigonometric tangent of an angle.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14) a: double
*
* {example} TAN(3.14)
*
*
*/
public static double TAN(double a) {
return Math.tan(a);
}
/**
* Calculates the hyperbolic tangent of an expression.
*
* {talendTypes} double | Double
*
* {Category} Mathematical
*
* {param} double(3.14) a: double
*
* {example} TANH(3.14)
*
*/
public static double TANH(double a) {
return Math.tanh(a);
}
}