All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ansj.util.MatrixUtil Maven / Gradle / Ivy

There is a newer version: 5.1.6
Show newest version
package org.ansj.util;

public class MatrixUtil {

	/**
	 * 向量求和
	 * 
	 * @param dbs
	 * @return
	 */
	public static double sum(double[] dbs) {
		double value = 0;
		for (double d : dbs) {
			value += d;
		}
		return value;
	}

	public static int sum(int[] dbs) {
		int value = 0;
		for (int d : dbs) {
			value += d;
		}
		return value;
	}

	public static double sum(double[][] w) {
		
		double value = 0;
		for (double[] dbs : w) {
			value += sum(dbs);
		}
		return value;
	}

	public static void dot(double[] feature, double[] feature1) {
		if (feature1 == null) {
			return;
		}
		for (int i = 0; i < feature1.length; i++) {
			feature[i] += feature1[i];
		}
	}

	public static void dot(float[] feature, float[] feature1) {
		if (feature1 == null) {
			return;
		}

		if (feature == null) {
			return ;
		}

		int min = Math.min(feature.length, feature1.length);

		for (int i = 0; i < min; i++) {
			feature[i] += feature1[i];
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy