-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnansum.py
50 lines (43 loc) · 1.32 KB
/
nansum.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
42
43
44
45
46
47
48
49
def nanmean(x):
# NANSUM Sum of matrix columns, ignoring NaNs
# ===================================================================
# NANSUM 1.2 92/04/14 Copyright (C) Phil Morgan 1991
#
# function y = nansum(x)
#
# DESCRIPTION:
# Sum of matrix columns, ignoring NaNs
#
# INPUT:
# x = vector or matrix
#
# OUTPUT:
# y = column-wise sum of x. If x a vector then y = sum(x)
# ignoring all NaNs. Thus a sum of actual data values.
#
# EXAMPLE: A = [ 1 2 3;
# 3 NaN 5];
# y = sum(x)
# y = [4 2 8]
#
# CALLER: general purpose
# CALLEE: none
#
# AUTHOR: Phil Morgan 3-09-91
# ==================================================================
# @(#)nansum.m 1.2 92/04/14
#
# --------------------------------------------------------------------
m,ncols = x.shape
# IF A ROW VECTOR THEN TRANSPOSE TO COLUMN VECTOR
if m == 1:
x = np.transpose(x)
ncols = 1
# FOR EACH COLUMN FIND SUM EXCLUDING NaNs
for icol in range(ncols):
good = np.argwhere(~np.isnan(x[:,icol]))
if length(good)>0:
y[icol] = np.nansum( x[good,icol],axis=0 )
else:
y[icol] = np.nan
return y