Summary: Find the tangent of a 45-degree angle with Windows PowerShell.
How can I use Windows PowerShell to obtain the tangent of a 45-degree angle?
Use the Tan static method from the [math] class, for example:
[math]::tan(45)
Summary: Find the tangent of a 45-degree angle with Windows PowerShell.
How can I use Windows PowerShell to obtain the tangent of a 45-degree angle?
Use the Tan static method from the [math] class, for example:
[math]::tan(45)