Overload List
| # | Signature | Description |
|---|---|---|
| 1 | clMatrix ArcCos(TOpenCLMatrix X) | Result = the ArcCos function from the source and return the result |
| 2 | clValue ArcCos(TOpenCLValue X) | Result = the ArcCos function from the source and return the result |
| 3 | clVector ArcCos(TOpenCLVector X) | Result = the ArcCos function from the source and return the result |
Overload 1: clMatrix ArcCos(TOpenCLMatrix X)
Compute the ArcCos function from the source and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
Returns: clMatrix
Remarks:
Internally calls Dew.Math.clMatrix.ArcCos
Overload 2: clValue ArcCos(TOpenCLValue X)
Compute the ArcCos function from the source and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue | source TOpenCLValue |
Returns: clValue
Remarks:
Internally calls Dew.Math.clValue.ArcCos
Examples
using Dew.Math;
using Dew.Math.Units;
namespace Dew.Examples
{
void Example()
{
TOpenCLValue a,b;
clMtxVec.CreateIt(out a, out b);
try
{
b.Copy(4);
a.ArcCos(b);
}
finally
{
clMtxVec.FreeIt(ref a, ref b);
}
}
}
Overload 3: clVector ArcCos(TOpenCLVector X)
Compute the ArcCos function from the source and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
Returns: clVector
Remarks:
Internally calls Dew.Math.clVector.ArcCos