Mercurial > hg > octave-nkf
view libcruft/odepack/svnorm.f @ 14119:94e2a76f1e5a stable
doc: Final grammarcheck and spellcheck before 3.6.0 release.
* container.txi, aspell-octave.en.pws, expr.txi, vectorize.txi, accumarray.m,
accumdim.m, interpft.m, strread.m, parseparams.m, warning_ids.m, cellfun.cc,
help.cc: grammarcheck and spellcheck docstrings.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Thu, 29 Dec 2011 06:05:00 -0800 |
parents | 96ba591be50f |
children |
line wrap: on
line source
REAL FUNCTION SVNORM (N, V, W) C***BEGIN PROLOGUE SVNORM C***SUBSIDIARY C***PURPOSE Weighted root-mean-square vector norm. C***TYPE SINGLE PRECISION (SVNORM-S, DVNORM-D) C***AUTHOR Hindmarsh, Alan C., (LLNL) C***DESCRIPTION C C This function routine computes the weighted root-mean-square norm C of the vector of length N contained in the array V, with weights C contained in the array W of length N: C SVNORM = SQRT( (1/N) * SUM( V(i)*W(i) )**2 ) C C***SEE ALSO SLSODE C***ROUTINES CALLED (NONE) C***REVISION HISTORY (YYMMDD) C 791129 DATE WRITTEN C 890501 Modified prologue to SLATEC/LDOC format. (FNF) C 890503 Minor cosmetic changes. (FNF) C 930809 Renamed to allow single/double precision versions. (ACH) C***END PROLOGUE SVNORM C**End INTEGER N, I REAL V, W, SUM DIMENSION V(N), W(N) C C***FIRST EXECUTABLE STATEMENT SVNORM SUM = 0.0E0 DO 10 I = 1,N 10 SUM = SUM + (V(I)*W(I))**2 SVNORM = SQRT(SUM/N) RETURN C----------------------- END OF FUNCTION SVNORM ------------------------ END