Complex.Tan Method
Returns the tangent of the specified complex number.
Assembly: System.Numerics (in System.Numerics.dll)
Parameters
- value
- Type: System.Numerics.Complex
A complex number.
The following example illustrates the Tan method. It shows that passing the value returned by the Atan method to the Tan method returns the original Complex value.
using System; using System.Numerics; public class Example { public static void Main() { Complex[] values = { new Complex(2.5, 1.5), new Complex(2.5, -1.5), new Complex(-2.5, 1.5), new Complex(-2.5, -1.5) }; foreach (Complex value in values) Console.WriteLine("Tan(Atan({0})) = {1}", value, Complex.Tan(Complex.Atan(value))); } } // The example displays the following output: // Tan(Atan((2.5, 1.5))) = (2.5, 1.5) // Tan(Atan((2.5, -1.5))) = (2.5, -1.5) // Tan(Atan((-2.5, 1.5))) = (-2.5, 1.5) // Tan(Atan((-2.5, -1.5))) = (-2.5, -1.5)
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.