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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:36:03+00:00 2026-06-04T01:36:03+00:00

For some bizarre reason, I am struggling to get my head around iterators/generators as

  • 0

For some bizarre reason, I am struggling to get my head around iterators/generators as used in Python (I write/use them with no problem in C++ – but somehow I can’t seem to grok how to write one using Python).

I have a mathematical function of the form:

f(a,b) = ( v1(a) - v1(b) ) / ( v2(a) - v2(b) )

Where v1 and v2 are equal length 1D vectors.

I want to write a function (actually, a generator), that generates the output of f() as defined above.

Can anyone help?

[[Edit]]

My notation may have been confusing. I hope to clarify that. The function described above return a set of values. With the argument b taking on values, in the interval (a,b]

So for example if we call f(1,5), the function will return the following values (not functions -in case my clarification below causes further confusion):

f(1,1)
f(1,2)
f(1,3)
f(1,4)
f(1,5)
  • 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-04T01:36:04+00:00Added an answer on June 4, 2026 at 1:36 am

    You can use generator expression:

    def f(a, b):
      return ((v1[a] - v1[i]) / (v2[a] - v2[i]) for i in xrange(a, b+1))
    

    Or a generator function

    def f(a, b):
      for i in xrange(a, b+1)
        yield (v1[a] - v1[i]) / (v2[a] - v2[i])
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some bizarre problem when I try to use Events and IPC Remoting am
I've created a JSFiddle for my problem, but for some bizarre reason, even tho
the following code for some bizarre reason gives me a value for each row
For some strange, bizarre reason, my images in my website just will not display
for some bizarre reason I always forget the exact syntax of arrays. How do
Due to some rather bizarre architectural considerations I've had to set up something that
I've been getting some extremely bizarre behaviour where NHibernate queries start to hang. I've
I've seen the following (bizarre) Javascript rounding function in some legacy code. After googling
Some code for context: class a { } class b { public a a{get;set;}
This is bizarre, I was wondering if anyone could shed some light on why

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.