Changed "...UnivariateVectorialFunction" to "...UnivariateVectorFunction"
(as suggested by Ted Dunning).



git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1207675 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2011-11-28 22:51:34 +00:00
parent 9c1e515346
commit cee29030d0
2 changed files with 5 additions and 5 deletions

View File

@ -17,19 +17,19 @@
package org.apache.commons.math.analysis;
/**
* Extension of {@link UnivariateVectorialFunction} representing a differentiable univariate vectorial function.
* Extension of {@link UnivariateVectorFunction} representing a differentiable univariate vectorial function.
*
* @version $Id$
* @since 2.0
*/
public interface DifferentiableUnivariateVectorialFunction
extends UnivariateVectorialFunction {
public interface DifferentiableUnivariateVectorFunction
extends UnivariateVectorFunction {
/**
* Returns the derivative of the function
*
* @return the derivative function
*/
UnivariateVectorialFunction derivative();
UnivariateVectorFunction derivative();
}

View File

@ -22,7 +22,7 @@ package org.apache.commons.math.analysis;
* @version $Id$
* @since 2.0
*/
public interface UnivariateVectorialFunction {
public interface UnivariateVectorFunction {
/**
* Compute the value for the function.