<< size | Elementary functions | squeeze >> |
R = sqrt(M) |
a variable
result of sqrt: square root.
sqrt computes the square root.
If input argument is a complex number or negative, sqrt(z) computes: sqrt(r) * (cos(phi/2) + sin(phi/2) * i) with
r = sqrt((real(z) * real(z)) + (imag(z) * imag(z))) and phi = atan2(imag(z), real(z))
x = -3:3;
r = sqrt(x)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET