alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Commons Math example source code file (AbstractStorelessUnivariateStatistic.java)

This example Commons Math source code file (AbstractStorelessUnivariateStatistic.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Commons Math tags/keywords

abstractstorelessunivariatestatistic, abstractstorelessunivariatestatistic, abstractunivariatestatistic, abstractunivariatestatistic, override, override, storelessunivariatestatistic, storelessunivariatestatistic

The Commons Math AbstractStorelessUnivariateStatistic.java source code

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */
package org.apache.commons.math.stat.descriptive;

import org.apache.commons.math.MathRuntimeException;
import org.apache.commons.math.util.MathUtils;

/**
 *
 * Abstract implementation of the {@link StorelessUnivariateStatistic} interface.
 * <p>
 * Provides default <code>evaluate() and incrementAll(double[])
 * implementations.</p>
 * <p>
 * <strong>Note that these implementations are not synchronized.

* * @version $Revision: 811833 $ $Date: 2009-09-06 12:27:50 -0400 (Sun, 06 Sep 2009) $ */ public abstract class AbstractStorelessUnivariateStatistic extends AbstractUnivariateStatistic implements StorelessUnivariateStatistic { /** * This default implementation calls {@link #clear}, then invokes * {@link #increment} in a loop over the the input array, and then uses * {@link #getResult} to compute the return value. * <p> * Note that this implementation changes the internal state of the * statistic. Its side effects are the same as invoking {@link #clear} and * then {@link #incrementAll(double[])}.</p> * <p> * Implementations may override this method with a more efficient and * possibly more accurate implementation that works directly with the * input array.</p> * <p> * If the array is null, an IllegalArgumentException is thrown.</p> * @param values input array * @return the value of the statistic applied to the input array * @see org.apache.commons.math.stat.descriptive.UnivariateStatistic#evaluate(double[]) */ @Override public double evaluate(final double[] values) { if (values == null) { throw MathRuntimeException.createIllegalArgumentException("input values array is null"); } return evaluate(values, 0, values.length); } /** * This default implementation calls {@link #clear}, then invokes * {@link #increment} in a loop over the specified portion of the input * array, and then uses {@link #getResult} to compute the return value. * <p> * Note that this implementation changes the internal state of the * statistic. Its side effects are the same as invoking {@link #clear} and * then {@link #incrementAll(double[], int, int)}.</p> * <p> * Implementations may override this method with a more efficient and * possibly more accurate implementation that works directly with the * input array.</p> * <p> * If the array is null or the index parameters are not valid, an * IllegalArgumentException is thrown.</p> * @param values the input array * @param begin the index of the first element to include * @param length the number of elements to include * @return the value of the statistic applied to the included array entries * @see org.apache.commons.math.stat.descriptive.UnivariateStatistic#evaluate(double[], int, int) */ @Override public double evaluate(final double[] values, final int begin, final int length) { if (test(values, begin, length)) { clear(); incrementAll(values, begin, length); } return getResult(); } /** * {@inheritDoc} */ @Override public abstract StorelessUnivariateStatistic copy(); /** * {@inheritDoc} */ public abstract void clear(); /** * {@inheritDoc} */ public abstract double getResult(); /** * {@inheritDoc} */ public abstract void increment(final double d); /** * This default implementation just calls {@link #increment} in a loop over * the input array. * <p> * Throws IllegalArgumentException if the input values array is null.</p> * * @param values values to add * @throws IllegalArgumentException if values is null * @see org.apache.commons.math.stat.descriptive.StorelessUnivariateStatistic#incrementAll(double[]) */ public void incrementAll(double[] values) { if (values == null) { throw MathRuntimeException.createIllegalArgumentException("input values array is null"); } incrementAll(values, 0, values.length); } /** * This default implementation just calls {@link #increment} in a loop over * the specified portion of the input array. * <p> * Throws IllegalArgumentException if the input values array is null.</p> * * @param values array holding values to add * @param begin index of the first array element to add * @param length number of array elements to add * @throws IllegalArgumentException if values is null * @see org.apache.commons.math.stat.descriptive.StorelessUnivariateStatistic#incrementAll(double[], int, int) */ public void incrementAll(double[] values, int begin, int length) { if (test(values, begin, length)) { int k = begin + length; for (int i = begin; i < k; i++) { increment(values[i]); } } } /** * Returns true iff <code>object
is an * <code>AbstractStorelessUnivariateStatistic
returning the same * values as this for <code>getResult() and getN() * @param object object to test equality against. * @return true if object returns the same value as this */ @Override public boolean equals(Object object) { if (object == this ) { return true; } if (object instanceof AbstractStorelessUnivariateStatistic == false) { return false; } AbstractStorelessUnivariateStatistic stat = (AbstractStorelessUnivariateStatistic) object; return MathUtils.equals(stat.getResult(), this.getResult()) && MathUtils.equals(stat.getN(), this.getN()); } /** * Returns hash code based on getResult() and getN() * * @return hash code */ @Override public int hashCode() { return 31* (31 + MathUtils.hash(getResult())) + MathUtils.hash(getN()); } }

Other Commons Math examples (source code examples)

Here is a short list of links related to this Commons Math AbstractStorelessUnivariateStatistic.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.