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

  • SEARCH
  • Home
  • 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 8062553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T10:42:32+00:00 2026-06-05T10:42:32+00:00

one can assign a probability to each element of an array by simply deviding

  • 0

one can assign a probability to each element of an array by simply deviding the value of each element by the sum of all array elements. I am trying to do this with python for a long list of numpy arrays. My Code:

def calc_probs(self, array_list):

    for array in array_list:
        buffer=array.astype("float")
        s=sum(buffer)
        for e in np.nditer(buffer, op_flags=["readwrite"]):
            e/=s
        self.probs.append(buffer)

This code should be working. In fact it IS working when typing it into the interactive mode of IPython. The results are then just what I want them to be. But if I save the code to a file und run, I always get the following ValueError:

ValueError: non-broadcastable output operand with shape () doesn’t match the broadcast shape (10)

I do not understand why this error occures, especially when running from a file. Could anyone please explain it to me and help to solve the problem?
Thanks a lot!

  • 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-05T10:42:34+00:00Added an answer on June 5, 2026 at 10:42 am

    sum is __builtin__.sum, which doesn’t know how to sum a NumPy array so just returns the array unchanged. The error is happening because you are trying to divide the singular matrix e by the 10×10 matrix s.

    You want s = np.sum(buffer).

    This whole code could be simplified to:

    self.probs.append(array / np.sum(array))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is anything like this possible in Java? Can one assign custom numeric values to
I can assign one struct's value to another and the memory gets copied automatically.
How can one assign a Javascript namespace to an HTML element and call functions
in my application user can create an array of elements.E.g. he can assign a
In order to return a value from a VB.NET function one can assign a
Hi all we can assign a value or return a value many other way..
One can remove all calls to printf() using #define printf . What if I
One can define a static array at compile time as follows: const std::size_t size
Given an array A with n integers. In one turn one can apply the
We have this ui:repeat: <ui:repeat value=#{notAssigned} var=pair> #{pair.data.processName}<br/> <s:button value=assign action=#{mypage.assign}> <f:param name=taskId value=#{pair.task.id}/>

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.