将输入数组转换为dB(10 * log10())
//package com.nowjava; public class Main {//来自 时 代 J a v a 公 众 号 - nowjava.com /** * Converts the input array to dB (10*log10()) * @param input */ public static void toDb(double[] input) { for (int i = 0; i < input.length; i++) { input[i] = 10 * Math.log10(input[i]); } } }