Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 93236 invoked from network); 6 Dec 2010 12:53:04 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 6 Dec 2010 12:53:04 -0000 Received: (qmail 11040 invoked by uid 500); 6 Dec 2010 12:53:04 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 10687 invoked by uid 500); 6 Dec 2010 12:53:03 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 10680 invoked by uid 99); 6 Dec 2010 12:53:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Dec 2010 12:53:03 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Dec 2010 12:52:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B825A23889EB; Mon, 6 Dec 2010 12:52:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1042610 - /commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java Date: Mon, 06 Dec 2010 12:52:36 -0000 To: commits@commons.apache.org From: erans@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101206125236.B825A23889EB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: erans Date: Mon Dec 6 12:52:36 2010 New Revision: 1042610 URL: http://svn.apache.org/viewvc?rev=1042610&view=rev Log: MATH-453 Removed Javadoc comment referring to non-existent package. Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java?rev=1042610&r1=1042609&r2=1042610&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java (original) +++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java Mon Dec 6 12:52:36 2010 @@ -250,10 +250,7 @@ public interface RealVector { * * @param d Operator value. * @return a mapped copy of the vector. - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapPow(double d); @@ -264,10 +261,7 @@ public interface RealVector { * * @param d Operator value. * @return the mapped vector. - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapPowToSelf(double d); @@ -276,10 +270,7 @@ public interface RealVector { * Map the {@link Math#exp(double)} function to each entry. * * @return a mapped copy of the vector. - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapExp(); @@ -289,10 +280,7 @@ public interface RealVector { * The instance is changed in-place. * * @return the mapped vector. - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapExpToSelf(); @@ -300,10 +288,7 @@ public interface RealVector { /** * Map the {@link Math#expm1(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapExpm1(); @@ -312,10 +297,7 @@ public interface RealVector { * Map the {@link Math#expm1(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapExpm1ToSelf(); @@ -323,10 +305,7 @@ public interface RealVector { /** * Map the {@link Math#log(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapLog(); @@ -335,10 +314,7 @@ public interface RealVector { * Map the {@link Math#log(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapLogToSelf(); @@ -346,10 +322,7 @@ public interface RealVector { /** * Map the {@link Math#log10(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapLog10(); @@ -358,10 +331,7 @@ public interface RealVector { * Map the {@link Math#log10(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapLog10ToSelf(); @@ -369,10 +339,7 @@ public interface RealVector { /** * Map the {@link Math#log1p(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapLog1p(); @@ -381,10 +348,7 @@ public interface RealVector { * Map the {@link Math#log1p(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapLog1pToSelf(); @@ -392,10 +356,7 @@ public interface RealVector { /** * Map the {@link Math#cosh(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapCosh(); @@ -404,10 +365,7 @@ public interface RealVector { * Map the {@link Math#cosh(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapCoshToSelf(); @@ -415,10 +373,7 @@ public interface RealVector { /** * Map the {@link Math#sinh(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapSinh(); @@ -427,10 +382,7 @@ public interface RealVector { * Map the {@link Math#sinh(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapSinhToSelf(); @@ -438,10 +390,7 @@ public interface RealVector { /** * Map the {@link Math#tanh(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapTanh(); @@ -450,10 +399,7 @@ public interface RealVector { * Map the {@link Math#tanh(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapTanhToSelf(); @@ -461,10 +407,7 @@ public interface RealVector { /** * Map the {@link Math#cos(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapCos(); @@ -473,10 +416,7 @@ public interface RealVector { * Map the {@link Math#cos(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapCosToSelf(); @@ -484,10 +424,7 @@ public interface RealVector { /** * Map the {@link Math#sin(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapSin(); @@ -496,10 +433,7 @@ public interface RealVector { * Map the {@link Math#sin(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapSinToSelf(); @@ -507,10 +441,7 @@ public interface RealVector { /** * Map the {@link Math#tan(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapTan(); @@ -519,10 +450,7 @@ public interface RealVector { * Map the {@link Math#tan(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapTanToSelf(); @@ -530,10 +458,7 @@ public interface RealVector { /** * Map the {@link Math#acos(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapAcos(); @@ -542,10 +467,7 @@ public interface RealVector { * Map the {@link Math#acos(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapAcosToSelf(); @@ -553,10 +475,7 @@ public interface RealVector { /** * Map the {@link Math#asin(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapAsin(); @@ -565,10 +484,7 @@ public interface RealVector { * Map the {@link Math#asin(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapAsinToSelf(); @@ -576,10 +492,7 @@ public interface RealVector { /** * Map the {@link Math#atan(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapAtan(); @@ -588,10 +501,7 @@ public interface RealVector { * Map the {@link Math#atan(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapAtanToSelf(); @@ -599,10 +509,7 @@ public interface RealVector { /** * Map the 1/x function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapInv(); @@ -611,10 +518,7 @@ public interface RealVector { * Map the 1/x function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapInvToSelf(); @@ -622,10 +526,7 @@ public interface RealVector { /** * Map the {@link Math#abs(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapAbs(); @@ -634,10 +535,7 @@ public interface RealVector { * Map the {@link Math#abs(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapAbsToSelf(); @@ -645,10 +543,7 @@ public interface RealVector { /** * Map the {@link Math#sqrt(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapSqrt(); @@ -657,10 +552,7 @@ public interface RealVector { * Map the {@link Math#sqrt(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapSqrtToSelf(); @@ -668,10 +560,7 @@ public interface RealVector { /** * Map the {@link Math#cbrt(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapCbrt(); @@ -680,10 +569,7 @@ public interface RealVector { * Map the {@link Math#cbrt(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapCbrtToSelf(); @@ -691,10 +577,7 @@ public interface RealVector { /** * Map the {@link Math#ceil(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapCeil(); @@ -703,10 +586,7 @@ public interface RealVector { * Map the {@link Math#ceil(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapCeilToSelf(); @@ -714,10 +594,7 @@ public interface RealVector { /** * Map the {@link Math#floor(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapFloor(); @@ -726,10 +603,7 @@ public interface RealVector { * Map the {@link Math#floor(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapFloorToSelf(); @@ -737,10 +611,7 @@ public interface RealVector { /** * Map the {@link Math#rint(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapRint(); @@ -749,10 +620,7 @@ public interface RealVector { * Map the {@link Math#rint(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapRintToSelf(); @@ -760,10 +628,7 @@ public interface RealVector { /** * Map the {@link Math#signum(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapSignum(); @@ -772,10 +637,7 @@ public interface RealVector { * Map the {@link Math#signum(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapSignumToSelf(); @@ -783,10 +645,7 @@ public interface RealVector { /** * Map the {@link Math#ulp(double)} function to each entry. * @return a vector containing the result of applying the function to each entry - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #map(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapUlp(); @@ -795,10 +654,7 @@ public interface RealVector { * Map the {@link Math#ulp(double)} function to each entry. *

The instance is changed by this method.

* @return for convenience, return this - * @deprecated in 2.2 (to be removed in 3.0). Please use - * {@link #mapToSelf(UnivariateRealFunction)} directly with - * the function classes in package - * {@link org.apache.commons.math.analysis.function}. + * @deprecated in 2.2 (to be removed in 3.0). */ @Deprecated RealVector mapUlpToSelf();