Complexe getallen in Python | Set 3 (trigonometrische en hyperbolische functies)

Enkele van de belangrijke complexe getalfuncties worden in de onderstaande artikelen besproken Complexe getallen in Python | Set 1 (inleiding) Complexe getallen in Python | Set 2 (belangrijke functies en constanten) Trigonometrische en hyperbolische functies worden in dit artikel besproken. Trigonometrische functies 1. zonde() : Deze functie retourneert de die van hen van het complexe getal dat in een argument wordt doorgegeven. 2. cos() : Deze functie retourneert de cosinus van het complexe getal dat in een argument wordt doorgegeven. 3. bruinen() : Deze functie retourneert de raaklijn of the complex number passed in argument. Python
   # Python code to demonstrate the working of    # sin() cos() tan()   # importing 'cmath' for complex number operations   import   cmath   # Initializing real numbers   x   =   1.0   y   =   1.0   # converting x and y into complex number z   z   =   complex  (  x    y  );   # printing sine of the complex number   print   (  'The sine value of complex number is : '    end  =  ''  )   print   (  cmath  .  sin  (  z  ))   # printing cosine of the complex number   print   (  'The cosine value of complex number is : '    end  =  ''  )   print   (  cmath  .  cos  (  z  ))   # printing tangent of the complex number   print   (  'The tangent value of complex number is : '    end  =  ''  )   print   (  cmath  .  tan  (  z  ))   
Output:
The sine value of complex number is : (1.2984575814159773+0.6349639147847361j) The cosine value of complex number is : (0.8337300251311491-0.9888977057628651j) The tangent value of complex number is : (0.2717525853195118+1.0839233273386946j)  

4. zout() : Deze functie retourneert de boog sinus van het complexe getal dat in een argument wordt doorgegeven. 5. acos() : Deze functie retourneert de boogcosinus van het complexe getal dat in een argument wordt doorgegeven. 6. atan() : Deze functie retourneert de boog raakt of the complex number passed in argument. Python
   # Python code to demonstrate the working of    # asin() acos() atan()   # importing 'cmath' for complex number operations   import   cmath   # Initializing real numbers   x   =   1.0   y   =   1.0   # converting x and y into complex number z   z   =   complex  (  x    y  );   # printing arc sine of the complex number   print   (  'The arc sine value of complex number is : '    end  =  ''  )   print   (  cmath  .  asin  (  z  ))   # printing arc cosine of the complex number   print   (  'The arc cosine value of complex number is : '    end  =  ''  )   print   (  cmath  .  acos  (  z  ))   # printing arc tangent of the complex number   print   (  'The arc tangent value of complex number is : '    end  =  ''  )   print   (  cmath  .  atan  (  z  ))   
Output:
The arc sine value of complex number is : (0.6662394324925153+1.0612750619050357j) The arc cosine value of complex number is : (0.9045568943023814-1.0612750619050357j) The arc tangent value of complex number is : (1.0172219678978514+0.40235947810852507j)  

Hyperbolische functies 1. geboorte() : Deze functie retourneert de hyperbolische sinus van het complexe getal dat in een argument wordt doorgegeven. 2. cosh() : Deze functie retourneert de hyperbolische cosinus van het complexe getal dat in een argument wordt doorgegeven. 3. tanh() : Deze functie retourneert de hyperbolische tangens of the complex number passed in argument. Python
   # Python code to demonstrate the working of    # sinh() cosh() tanh()   # importing 'cmath' for complex number operations   import   cmath   # Initializing real numbers   x   =   1.0   y   =   1.0   # converting x and y into complex number z   z   =   complex  (  x    y  );   # printing hyperbolic sine of the complex number   print   (  'The hyperbolic sine value of complex number is : '    end  =  ''  )   print   (  cmath  .  sinh  (  z  ))   # printing hyperbolic cosine of the complex number   print   (  'The hyperbolic cosine value of complex number is : '    end  =  ''  )   print   (  cmath  .  cosh  (  z  ))   # printing hyperbolic tangent of the complex number   print   (  'The hyperbolic tangent value of complex number is : '    end  =  ''  )   print   (  cmath  .  tanh  (  z  ))   
Output:
The hyperbolic sine value of complex number is : (0.6349639147847361+1.2984575814159773j) The hyperbolic cosine value of complex number is : (0.8337300251311491+0.9888977057628651j) The hyperbolic tangent value of complex number is : (1.0839233273386946+0.2717525853195117j)  

4. asinh() : Deze functie retourneert de omgekeerde hyperbolische sinus van het complexe getal dat in een argument wordt doorgegeven. 5. acosh() : Deze functie retourneert de inverse hyperbolische cosinus van het complexe getal dat in een argument wordt doorgegeven. 6. atanh() : Deze functie retourneert de inverse hyperbolische tangens of the complex number passed in argument. Python
   # Python code to demonstrate the working of    # asinh() acosh() atanh()   # importing 'cmath' for complex number operations   import   cmath   # Initializing real numbers   x   =   1.0   y   =   1.0   # converting x and y into complex number z   z   =   complex  (  x    y  );   # printing inverse hyperbolic sine of the complex number   print   (  'The inverse hyperbolic sine value of complex number is : '    end  =  ''  )   print   (  cmath  .  asinh  (  z  ))   # printing inverse hyperbolic cosine of the complex number   print   (  'The inverse hyperbolic cosine value of complex number is : '    end  =  ''  )   print   (  cmath  .  acosh  (  z  ))   # printing inverse hyperbolic tangent of the complex number   print   (  'The inverse hyperbolic tangent value of complex number is : '    end  =  ''  )   print   (  cmath  .  atanh  (  z  ))   
Output:
The inverse hyperbolic sine value of complex number is : (1.0612750619050357+0.6662394324925153j) The inverse hyperbolic cosine value of complex number is : (1.0612750619050357+0.9045568943023813j) The inverse hyperbolic tangent value of complex number is : (0.40235947810852507+1.0172219678978514j)