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 6647303
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:31:17+00:00 2026-05-26T00:31:17+00:00

I am having a slight problem in getting numpy.any() to work fine on my

  • 0

I am having a slight problem in getting numpy.any() to work fine on my problem.
Consider I have a 3D matrix of N X M X M matrix, where I need to get rid of any matrix MXM that has all its elements the same [all zeros to say].
Here is an example to illustrate my issue

x = np.arange(250).reshape(10,5,5)
x[0,:,:] = 0

What I need to do is get rid of the first 5X5 matrix since it contain all zeros.
So I tried with

np.any(x,axis=0)

and expected to have a results of

[FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE]

but what i get is

array([[ True,  True,  True,  True,  True],
   [ True,  True,  True,  True,  True],
   [ True,  True,  True,  True,  True],
   [ True,  True,  True,  True,  True],
   [ True,  True,  True,  True,  True]
   [ True,  True,  True,  True,  True],
   [ True,  True,  True,  True,  True],
   [ True,  True,  True,  True,  True],
   [ True,  True,  True,  True,  True],
   [ True,  True,  True,  True,  True]], dtype=bool)

Applying the follwing results with what I want but I hope that there is a better way without any loops

for i in range(x.shape[0]):
       y.append(np.any(x[i,:,:]))

Did I make a mistake somewhere here?
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-05-26T00:31:18+00:00Added an answer on May 26, 2026 at 12:31 am

    In a 10x5x5 matrix with x[0,:,:] = 0 I would expect a result of:

    [False,  True,  True,  True,  True,  True,  True,  True,  True,  True]
    

    because it is the first of ten 5×5 arrays which is all zero and not of five.

    You get this result using

    x.any(axis=1).any(axis=1)
    

    or

    x.any(axis=2).any(axis=1)
    

    which means you first eliminate the second (axis=1) or the third (asix=2) dimension and then the remaining second (axis=1) and you get the only one dimension, which was originally the first one (axis=0).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having a slight problem. I have set my <input type=file> to onChange=this.form.submit() .
I have a slight problem. Having recently migrated on Mac, I've been pulling my
I am having som slight difficulties with the following problem. I have initialized a
I have set up REST for my CakePHP and I'm having a slight problem.
I'm having a slight problem with my SDL/Opengl code, specifically, when i try to
I am coding this layout as a wordpress theme and having a slight problem
Having a problem getting a TreeView control to display node images. The code below
I am having a slight problem. I believe that my Netbeans is set to
I'm having a slight problem that I can't figure out, but should be really
UPDATE : look at the demo here: http://amit-verma.com/template_test/ i am having a slight problem

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.