GNU Octave
3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
Main Page
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
liboctave
cruft
odepack
svnorm.f
Go to the documentation of this file.
1
REAL
FUNCTION
svnorm
(N, V, W)
2
C***BEGIN PROLOGUE SVNORM
3
C***SUBSIDIARY
4
C***PURPOSE Weighted root-mean-square vector norm.
5
C***TYPE SINGLE PRECISION (SVNORM-S, DVNORM-D)
6
C***AUTHOR Hindmarsh, Alan C., (LLNL)
7
C***DESCRIPTION
8
C
9
C This function routine computes the weighted root-mean-square norm
10
C of the vector of length N contained in the array V, with weights
11
C contained in the array W of length N:
12
C SVNORM = SQRT( (1/N) * SUM( V(i)*W(i) )**2 )
13
C
14
C***SEE ALSO SLSODE
15
C***ROUTINES CALLED (NONE)
16
C***REVISION HISTORY (YYMMDD)
17
C 791129 DATE WRITTEN
18
C 890501 Modified prologue to SLATEC/LDOC format. (FNF)
19
C 890503 Minor cosmetic changes. (FNF)
20
C 930809 Renamed to allow single/double precision versions. (ACH)
21
C***END PROLOGUE SVNORM
22
C**End
23
INTEGER
n, i
24
REAL
v, w,
sum
25
dimension
v(n), w(n)
26
C
27
C***FIRST EXECUTABLE STATEMENT SVNORM
28
sum
= 0.0e0
29
DO
10 i = 1,n
30
10
sum
=
sum
+ (v(i)*w(i))**2
31
svnorm
=
sqrt
(
sum
/n)
32
RETURN
33
C----------------------- END OF FUNCTION SVNORM ------------------------
34
END
Generated on Mon Dec 30 2013 03:04:46 for GNU Octave by
1.8.1.2