All public logs

Combined display of all available logs of Rosetta Code. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 14:07, 29 May 2023 Chemoelectric talk contribs created page Simulated optics experiment/Data analysis (Created page with "{{draft task}} TO BE ADDED VERY SOON. This is temporary place-filler. =={{header|Python}}== <syntaxhighlight lang="python"> #!/bin/env -S python3 # # Reference: # # A. F. Kracklauer, ‘EPR-B correlations: non-locality or geometry?’, # J. Nonlinear Math. Phys. 11 (Supp.) 104–109 (2004). # https://doi.org/10.2991/jnmp.2004.11.s1.13 (Open access, CC BY-NC) # import sys from math import atan2, cos, floor, pi, radians, sin, sqrt class PulseData(): '''The d...")