ClMtxExpr.Log2 Method

Overload List

#SignatureDescription
1clMatrix Log2(TOpenCLMatrix X)Result = the Log2 function from the source and return the result
2clValue Log2(TOpenCLValue X)Result = the Log2 function from the source and return the result
3clVector Log2(TOpenCLVector X)Result = the Log2 function from the source and return the result

Overload 1: clMatrix Log2(TOpenCLMatrix X)

Compute the Log2 function from the source and return the result.

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls Dew.Math.clMatrix.Log2

Overload 2: clValue Log2(TOpenCLValue X)

Compute the Log2 function from the source and return the result.

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls Dew.Math.clValue.Log2

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(8);
            a.Log2(b);
        }
        finally
        {
            clMtxVec.FreeIt(ref a, ref b);
        }
    }
}

Overload 3: clVector Log2(TOpenCLVector X)

Compute the Log2 function from the source and return the result.

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls Dew.Math.clVector.Log2