ClMtxExpr.Csc Method

Overload List

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

Overload 1: clMatrix Csc(TOpenCLMatrix X)

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls Dew.Math.clMatrix.Csc

Overload 2: clValue Csc(TOpenCLValue X)

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls Dew.Math.clValue.Csc

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

Overload 3: clVector Csc(TOpenCLVector X)

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls Dew.Math.clVector.Csc