How can I reproduce a lowercase pattern like this in code?

I made this graph in tungsten alpha by accident:

Graph

Can you write code to create a larger version of this template?

Can you create similar templates?

Readable code in any language is good, but something that can be run in a browser would be better (i.e. JavaScript / Canvas). If you write code in other languages, include a screenshot.

Notes:

  • The input formula for the above image is: arg (sin (x + iy)) = sin ^ (- 1) ((sqrt (2) cos (x) sinh (y)) / sqrt (cosh (2 y) -cos (2 x ))) ( link )
  • You do not have to use the above formula. Anything that gives a similar result would be cool. But "reverse engineering" Wolfram Alpha would be better
  • ( ), WA , , 'true'
  • , , .
  • , ( ). .
  • , ( " " - .)
  • IEEE , sin cos .., .
  • .

, , : ()

Graph 2

+3
1

, Mathematica ( , Wolfram Alpha Mathematica)

alt text

:

:

alt text

Plot3D[f[x, y], {x, 7, 9}, {y, -8, -9},WorkingPrecision -> MachinePrecision]

:

alt text

30 :

Plot3D[f[x, y], {x, 7, 9}, {y, -8, -9},WorkingPrecision -> 30]  

alt text

( )

, f [x, y] - :

alt text

, ( ), x, , [2 n Pi, (2 n + 1) Pi]

+3

Source: https://habr.com/ru/post/1765301/


All Articles