sqrt(x: number): number
Computes the square root of a number, array, or matrix.
Computes the square root of each element in a number, array, or matrix. Returns NaN for negative values.
sqrt(x: array): array
Computes the square root of a number, array, or matrix.
Computes the square root of each element in a number, array, or matrix. Returns NaN for negative values.
x: array
The input value(s)
The square root of the input value(s)
sqrt(x: matrix): matrix
Computes the square root of a number, array, or matrix.
Computes the square root of each element in a number, array, or matrix. Returns NaN for negative values.
x: matrix
The input value(s)
The square root of the input value(s)
sqrt(x: number | array): number | array
Computes the square root of a number, array, or matrix.
Computes the square root of each element in a number, array, or matrix. Returns NaN for negative values.
x: number | array
The input value(s)
number | array
The square root of the input value(s)
sqrt(x: number | matrix): number | matrix
Computes the square root of a number, array, or matrix.
Computes the square root of each element in a number, array, or matrix. Returns NaN for negative values.
x: number | matrix
The input value(s)
number | matrix
The square root of the input value(s)
sqrt(x: array | matrix): array | matrix
Computes the square root of a number, array, or matrix.
Computes the square root of each element in a number, array, or matrix. Returns NaN for negative values.