acsc
Returns the inverse cosecant (in radians) for each element of the argument.
Syntax
R = acsc(a)
Inputs
- a
 - Dimension: scalar | vector | matrix
 
Outputs
- R
 - The angle result (in radians).
 
Examples
Scalar
        input:
      R = acsc(2/sqrt(3))R = 1.04719755Matrix
        input:
    R = acsc([1, 2/sqrt(3); 2, sqrt(2)])R = [Matrix] 2 x 2
  1.57080  1.04720
  0.52360  0.78540