You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > TOpenCLMtxVec Class > TOpenCLMtxVec Methods > ArcCot Method > TOpenCLMtxVec.ArcCot Method ()
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
TOpenCLMtxVec.ArcCot Method ()

Inverse cotangens.

Syntax
C#
Visual Basic
public TOpenCLMtxVec ArcCot();

Calculate the inverse cotangens for all calling object elements in-place. The return values are expressed in radians.

using Dew.Math; using Dew.Math.Units; namespace Dew.Examples() { void Example() { TMtx A,B; clMtxVec.CreateIt(out A, out B); try { A.SetIt(2,2,true, new double[] {1,0, 2,0, 2,0 4,1})); // 2x2, complex matrix B.ArcCot(A); } finally { clMtxVec.FreeIt(ref A, ref B); } } }
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!