I would like to divide a java.lang.Integer array and saved the result into a java.lang.Double array. I search over the Internet and could not find useful information (most of the search regarding java.lang.Integer class leads to the primitive type int operations, as Division of integers in Java, and this Integer division in Java).
My following code won't work
Integer[] FixedDays = {1, 2, 7, 14, 30, 60, 90, 180, 548, 730, 1095, 1460, 1825};
Double[] Ts = FixedDays / 365.0;
Is there a quick way to do the division regarding java.lang.Integer (or more generally the Number class and other basic math operation.)? Is there some math package which support such Number array operations?