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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T02:45:55+00:00 2026-06-11T02:45:55+00:00

As a Mathematica user, I like functions that automatically threads over lists (as the

  • 0

As a Mathematica user, I like functions that automatically “threads over lists” (as the Mathematica people call it – see http://reference.wolfram.com/mathematica/ref/Listable.html). That means that if a function is given a list instead of a single value, it automatically uses each list entry as an argument and returns a list of the results – e.g.

myfunc([1,2,3,4]) -> [myfunc(1),myfunc(2),myfunc(3),myfunc(4)]

I implemented this principle in Python like this:

def myfunc(x):    
    if isinstance(x,list):
        return [myfunc(thisx) for thisx in x]
    #rest of the function

Is this a good way to do it? Can you think of any downsides of this implementation or the strategy overall?

  • 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-11T02:45:56+00:00Added an answer on June 11, 2026 at 2:45 am

    If this is something you’re going to do in a lot of functions, you could use a Python decorator. Here’s a simple but useful one.

    def threads_over_lists(fn):
        def wrapped(x, *args, **kwargs):
            if isinstance(x, list):
                return [fn(e, *args, **kwargs) for e in x]
            return fn(x, *args, **kwargs)
        return wrapped
    

    This way, just adding the line @threads_over_lists before your function would make it behave this way. For example:

    @threads_over_lists
    def add_1(val):
        return val + 1
    
    print add_1(10)
    print add_1([10, 15, 20])
    
    # if there are multiple arguments, threads only over the first element,
    # keeping others the same
    
    @threads_over_lists
    def add_2_numbers(x, y):
        return x + y
    
    print add_2_numbers(1, 10)
    print add_2_numbers([1, 2, 3], 10)
    

    You should also consider whether you want this to vectorize only over lists, or also over other iterable objects like tuples and generators. This is a useful StackOverflow question for determining that. Be careful, though- a string is iterable, but you probably won’t want your function operating on each character within it.

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

Sidebar

Related Questions

I'm currently implementing a software that measures certain values over time. The user may
I would like to represent a Catenary-curve in Mathematica, and then allow the user
I am a new user of Mathematica and I can't figure out how to
Mathematica's list of built-in formats is pretty extensive; however, JSON is not on that
The problem is that I want to output Mathematica compatible floating point numbers. The
Possible Duplicate: Best practices in error reporting (Mathematica) Assume that I have a function
I would like to have a little triangle underneath the the text that points
I would like to know if there is any way of getting a user
I have a textbox where i want to read user-input mathematical functions( ex: Math.Sqrt(x)
I'm trying to run a Mathematica program (that I didn't write) locally. I have

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.