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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:37:26+00:00 2026-05-27T04:37:26+00:00

I’m fairly new to python and I am currently making use of the numPy

  • 0

I’m fairly new to python and I am currently making use of the numPy library along with pyinterval library. I want to build a matrix that isn’t composed of floats, but intervals.

however if I do the following:

A = [[interval([2,3]), interval([0,1]), interval([1,2]), interval([2,3])]]
m = np.matrix(A,interval)

it gives the following error:

raise ValueError, "matrix must be 2-dimensional"

In order to see how it was doing it I looked at this:

np.array(A)

and got the following output:

array([[[[ 2.,  3.]],
    [[ 0.,  1.]],
    [[ 1.,  2.]],
    [[ 2.,  3.]]]])

when I wanted to see something like:

array([[interval(2,3), interval[0,1],
       [interval(1,2), interval[2,3]])

I’m not sure how to get it to understand the type that I am using, I have tried various things after doing some searches but nothing seems to work.

How can I get it to see one interval as only one element in the array/matrix?

Thank you,

  • 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-27T04:37:26+00:00Added an answer on May 27, 2026 at 4:37 am

    From the docs regarding dtype syntax:

    each type specifier can be prefixed with a repetition number, or a
    shape. In these cases an array element is created, i.e., an array
    within a record. That array is still referred to as a single field.

    So to specify it as one item in the array, you might try setting the dtype to '(2,)object':

    To make a 2×2 ndarray:

    import interval
    A = [(interval.interval([2,3]), interval.interval([0,1])),
         (interval.interval([1,2]), interval.interval([2,3]))]
    a = np.array(A,dtype='(2,)object')
    

    To make a 2×2 matrix:

    m=np.matrix(A,dtype='(2,)object')
    

    Warning: I don’t really understand dtype syntax. It is far too complicated and occasionally I see strange bug reports (#1955,#1760, #1580) related to use of exotic dtypes. My personal conclusion is that it is safer to stick to plain, simple dtypes. Or, if you need to use a more complicated dtype, unit test it to make sure it behaves as you expect.


    An easier, better way to define the arrays is:

    A = [(interval.interval([2,3]), interval.interval([0,1])),
         (interval.interval([1,2]), interval.interval([2,3]))]
    a = np.empty((2,2),dtype='object')
    a[:]=A
    

    This tells numpy explicity what shape array you want, and then, since the dtype is object, you can stuff whatever you please into the cells of the array.

    Moreover, unlike the dtype='(2,)object' solution above, it also works for 1D arrays:

    bd = [interval.interval([0,1]),
          interval.interval([6,7])]
    
    b = np.empty(2,dtype='object')
    b[:]=bd
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want use html5's new tag to play a wav file (currently only supported
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I am trying to understand how to use SyndicationItem to display feed which is
I've got a string that has curly quotes in it. I'd like to replace
I am currently running into a problem where an element is coming back from
We're building an app, our first using Rails 3, and we're having to build

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.