-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnorm_qwt.py
41 lines (40 loc) · 1.24 KB
/
norm_qwt.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# function [G,mG,stdG]=norm_qwt(G1)
# Normalises the source water type (SWT) matrix G1
# and calculate standarddeviation and mean
#
# INPUT:
# G1 : Input nonnormalized SWt matrix
#
# OUTPUT:
# G : normalized SWT matrix
# mG : mean original SWT matrix
# stdG : standrddeviation of original SWT matrix
#
# called by OMP_MAIN.M
#
#
# ---------------------------------------------
# This program is part of the OMP package from:
# GEOMAR
# Helmholtz Centre for Ocean Res. Kiel FIAMS, Flinders University
# J. Karstensen Matthias Tomczak
# Duesternbrooker Weg 20 GPO Box 2100
# 24106 Kiel Adelaide, SA
# Germany Australia
#
# BUGS: [email protected]
# or [email protected]
# --------------------------------------------
def norm_qwt(G1):
import numpy as np
m,n = G1.shape # number of water types
# mean and standarddeviation of SWT
mG = np.mean(np.transpose(G1),axis=0)
stdG = np.std(np.transpose(G1),axis=0)
G = np.zeros(G1.shape)
# standardize QWT for m eq. 7
for i in range(n):
for kkk in range(m):
G[kkk,i]=(G1[kkk,i]-mG[kkk])/stdG[kkk]
G[m-1,i]=G1[m-1,i] # mass untouched
return G,mG,stdG