Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7909989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:40:52+00:00 2026-06-03T12:40:52+00:00

I have a Numpy 3 axis array whose elements are 3 dimensional. I’d like

  • 0

I have a Numpy 3 axis array whose elements are 3 dimensional. I’d like to average them and return the same shape of the array. The normal average function removes the 3 dimensions and replace it with the average (as expected):

a = np.array([[[0.1, 0.2, 0.3], [0.2, 0.3, 0.4]],
              [[0.4, 0.4, 0.4], [0.7, 0.6, 0.8]]], np.float32)

b = np.average(a, axis=2)
# b = [[0.2, 0.3],
#      [0.4, 0.7]]

Result required:

# b = [[[0.2, 0.2, 0.2], [0.3, 0.3, 0.3]],
#      [[0.4, 0.4, 0.4], [0.7, 0.7, 0.7]]]

Can you do this elegantly or do I just have to iterate over the array in Python (which will be a lot slower compared to a powerful Numpy function).

Can you set the Dtype argument, for the np.mean function, to a 1D array perhaps?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T12:40:53+00:00Added an answer on June 3, 2026 at 12:40 pm
    >>> import numpy as np
    >>> a = np.array([[[0.1, 0.2, 0.3], [0.2, 0.3, 0.4]],
    ...               [[0.4, 0.4, 0.4], [0.7, 0.6, 0.8]]], np.float32)
    >>> b = np.average(a, axis=2)
    >>> b
    array([[ 0.2       ,  0.29999998],
           [ 0.40000001,  0.69999999]], dtype=float32)
    >>> c = np.dstack((b, b, b))
    >>> c
    array([[[ 0.2       ,  0.2       ,  0.2       ],
            [ 0.29999998,  0.29999998,  0.29999998]],
    
           [[ 0.40000001,  0.40000001,  0.40000001],
            [ 0.69999999,  0.69999999,  0.69999999]]], dtype=float32)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a 2-dimensional numpy array that looks like this: [[a b c] [d
I have a NumPy array [1,2,3,4,5,6,7,8,9,10,11,12,13,14] and want to have an array structured like
I have a numpy array like this a = np.array(1) Now if I want
i have a numpy array like the following [[ 1 2 3 4 ]
I have a Numpy array that looks like >>> a array([[ 3. , 2.
I have a NumPy array a like the following: >>> str(a) '[ nan nan
I have an numpy 2D array and I want it to return coloumn c
Assuming I have a numpy array like: [1,2,3,4,5,6] and another array: [0,0,1,2,2,1] I want
I have a Numpy array and a list of indices whose values I would
I have two numpy array (2 dimensional) e.g. a1 = array([[a,b],[a,c],[b,b],[a,b]]) a2 = array([[a,b],[b,b],[c,a],[a,c]])

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.