本文整理汇总了Java中org.apache.commons.math3.util.MathArrays.scaleInPlace方法的典型用法代码示例。如果您正苦于以下问题:Java MathArrays.scaleInPlace方法的具体用法?Java MathArrays.scaleInPlace怎么用?Java MathArrays.scaleInPlace使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.commons.math3.util.MathArrays
的用法示例。
在下文中一共展示了MathArrays.scaleInPlace方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: updateClusterCenters
import org.apache.commons.math3.util.MathArrays; //导入方法依赖的package包/类
/**
* Update the cluster centers.
*/
private void updateClusterCenters() {
int j = 0;
final List<CentroidCluster<T>> newClusters = new ArrayList<CentroidCluster<T>>(k);
for (final CentroidCluster<T> cluster : clusters) {
final Clusterable center = cluster.getCenter();
int i = 0;
double[] arr = new double[center.getPoint().length];
double sum = 0.0;
for (final T point : points) {
final double u = FastMath.pow(membershipMatrix[i][j], fuzziness);
final double[] pointArr = point.getPoint();
for (int idx = 0; idx < arr.length; idx++) {
arr[idx] += u * pointArr[idx];
}
sum += u;
i++;
}
MathArrays.scaleInPlace(1.0 / sum, arr);
newClusters.add(new CentroidCluster<T>(new DoublePoint(arr)));
j++;
}
clusters.clear();
clusters = newClusters;
}
示例2: normalize
import org.apache.commons.math3.util.MathArrays; //导入方法依赖的package包/类
/**
*
*/
public void normalize() {
MathArrays.scaleInPlace(1.0/this.getMaximum().second, this.spectrum);
}