Owning Class: basic
Requires: MathScript RT Module
c = sqrt(a)
Computes the square root of the input elements.
| Name | Description |
|---|---|
| a | Specifies a scalar, vector, or matrix of complex double-precision, floating-point numbers. |
| Name | Description |
|---|---|
| c | Returns the square root of each element in a. c is a scalar, vector, or matrix of the same size as a. |
A = [1, 4; 0, -81];
C = sqrt(A)