我有两个尺寸为36608 * 1的矩阵。我想在两个矩阵之间求一个卡方距离,但我已经搜索了卡方方法,但是它不起作用。
答案 0 :(得分:1)
尝试将其重塑为 public static void main (String[] args) {
Random r = new Random();
char[] chars = new char[100_000]; // change this value to other benchmarks
for (char c : chars) {
c = (char) (r.nextInt(90) + 32);
}
Solution s = new Solution();
long x1 = System.currentTimeMillis();
s.reverseWords(Arrays.toString(chars));
long x2 = System.currentTimeMillis();
System.out.println("duration = " + (x2 - x1));
}
矩阵
如果您熟悉python,
您可以使用2*36608
,此函数将返回scipy.stats.chi2_contingency
距离。