From 193fb5bfcfffb2f05abc26482e9265baaf00aac4 Mon Sep 17 00:00:00 2001 From: "Paul A. Bristow" Date: Tue, 28 Aug 2007 13:44:31 +0000 Subject: [PATCH] added scale & location [SVN r39036] --- doc/distributions/normal.qbk | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/distributions/normal.qbk b/doc/distributions/normal.qbk index d3cadde6b..b879b29b6 100644 --- a/doc/distributions/normal.qbk +++ b/doc/distributions/normal.qbk @@ -19,8 +19,11 @@ // Construct: normal_distribution(RealType mean = 0, RealType sd = 1); // Accessors: - RealType mean()const; - RealType standard_deviation()const; + RealType mean()const; // location. + RealType standard_deviation()const; // scale. + // Synonyms, provided to allow generic use of find_location and find_scale. + RealType location()const; + RealType scale()const; }; }} // namespaces