Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
353 views
in Technique[技术] by (71.8m points)

python numpy ndarray element-wise mean

I'd like to calculate element-wise average of numpy ndarray.

In [56]: a = np.array([10, 20, 30])

In [57]: b = np.array([30, 20, 20])

In [58]: c = np.array([50, 20, 40])

What I want:

[30, 20, 30]

Is there any in-built function for this operation, other than vectorized sum and dividing?

question from:https://stackoverflow.com/questions/37443565/python-numpy-ndarray-element-wise-mean

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can just use np.mean directly:

>>> np.mean([a, b, c], axis=0)
array([ 30.,  20.,  30.])

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...