Freigeben über


Complex.Cosh(Complex) Methode

Definition

Gibt den hyperbolischen Kosinus der angegebenen komplexen Zahl zurück.

public:
 static System::Numerics::Complex Cosh(System::Numerics::Complex value);
public static System.Numerics.Complex Cosh (System.Numerics.Complex value);
static member Cosh : System.Numerics.Complex -> System.Numerics.Complex
Public Shared Function Cosh (value As Complex) As Complex

Parameter

value
Complex

Eine komplexe Zahl.

Gibt zurück

Der hyperbolische Kosinus von value.

Hinweise

Die Cosh Methode für komplexe Zahlen entspricht der Math.Cosh Methode für reelle Zahlen.

Die Cosh-Methode berechnet den hyperbolischen Kosinus der komplexen Zahl a + bi als x + yi, wobei:

  • x ist $\cosh a \times \cos b$
  • y ist $\sinh ein \times \sin b$

Gilt für:

Weitere Informationen