Complex.Cos(Complex) Metode

Definisi

Mengembalikan kosinus dari bilangan kompleks yang ditentukan.

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

Parameter

value
Complex

Bilangan kompleks.

Mengembalikan

Kosinus .value

Contoh

Contoh berikut mengilustrasikan Acos metode . Ini menunjukkan bahwa meneruskan nilai yang dikembalikan oleh Acos metode ke Cos metode mengembalikan nilai asli Complex .

using System;
using System.Numerics;

public class Example
{
   public static void Main()
   {
      Complex[] values = { new Complex(.5, 2),
                           new Complex(.5, -2),
                           new Complex(-.5, 2),
                           new Complex(-.3, -.8) };
      foreach (Complex value in values)
         Console.WriteLine("Cos(ACos({0})) = {1}", value,
                           Complex.Cos(Complex.Acos(value)));
   }
}
// The example displays the following output:
//       Cos(ACos((0.5, 2))) = (0.5, 2)
//       Cos(ACos((0.5, -2))) = (0.5, -2)
//       Cos(ACos((-0.5, 2))) = (-0.5, 2)
//       Cos(ACos((-0.3, -0.8))) = (-0.3, -0.8)
Imports System.Numerics

Module Example
   Public Sub Main()
      Dim values() As Complex = { New Complex(.5, 2), 
                                  New Complex(.5, -2),
                                  New Complex(-.5, 2),
                                  New Complex(-.3, -.8) }
      For Each value As Complex In values
         Console.WriteLine("Cos(ACos({0})) = {1}", value, 
                           Complex.Cos(Complex.Acos(value)))
      Next
   End Sub
End Module
' The example displays the following output:
'       Cos(ACos((0.5, 2))) = (0.5, 2)
'       Cos(ACos((0.5, -2))) = (0.5, -2)
'       Cos(ACos((-0.5, 2))) = (-0.5, 2)
'       Cos(ACos((-0.3, -0.8))) = (-0.3, -0.8)

Keterangan

Metode Cos untuk bilangan kompleks sesuai dengan metode untuk bilangan Math.Cos riil.

Metode ini Cos menggunakan rumus berikut untuk menghitung kosinus bilangan kompleks a + bi:

(Cos(a) * Cosh(b), -((Sina) * Sinh(b)))

Berlaku untuk

Lihat juga