[HP41] Lambda Modular function; question - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: General Forum (/forum-4.html) +--- Thread: [HP41] Lambda Modular function; question (/thread-19366.html) |
[HP41] Lambda Modular function; question - floppy - 12-31-2022 12:17 PM Hello, is anywhere a program to calculate the points of lambda with an HP41? RPN or RPN in MOD or Microcode in MOD? with complex numbers. In Wiki, there is a curve https://en.wikipedia.org/wiki/Modular_lambda_function#/media/File:Lambda_function.svg First I would like to calculate several points of a) lambda(i*x) then b) (e^(1/e))*(1-lambda(i*x)) then.. x between 0 and 10. Any advise is welcome. (if none exists in HP41 - or HP71 -, I will look at other calculator or PC-computing) RE: [HP41] Lambda Modular function; question - Ángel Martin - 01-07-2023 11:15 AM Here's a quick & dirty routine using 12 terms of the q-expansion and the 41Z. More terms would be needed for better accuracy near the origin in the imaginary axis. Input: Im(z) in Y, Re(z) in X Code:
RE: [HP41] Lambda Modular function; question - floppy - 01-07-2023 05:38 PM Thanks. For comparison in python. Code: import math as math |