Java Double Number Round round(double[][] data)

Here you can find the source of round(double[][] data)

Description

round

License

Open Source License

Parameter

Parameter Description
data a parameter

Declaration

public static double[][] round(double[][] data) 

Method Source Code

//package com.java2s;
/**//from   w ww .  ja va  2 s .  co  m
 * (C) Copyright IBM Corp. 2010, 2015
 *
 * 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.
 * 
?*/

public class Main {
    /**
     * 
     * @param data
     * @return
     */
    public static double[][] round(double[][] data) {
        for (int i = 0; i < data.length; i++)
            for (int j = 0; j < data[i].length; j++)
                data[i][j] = Math.round(data[i][j]);

        return data;
    }
}

Related

  1. round(double x, int numPlaces)
  2. round(double x, int places)
  3. round(double zahl, int stellen)
  4. round(double[] arr)
  5. round(double[] array, int decimals)
  6. round(final double num)
  7. round(final double num, final int prec)
  8. round(final double numberToRound, final int decimalPlaces)
  9. round(final double v)