sqrt
Square root.
📝 Syntax
R = sqrt(M)
📥 Input argument
M - a variable
📤 Output argument
R - result of sqrt: square root.
📄 Description
sqrt computes the square root.
For real positive numbers:
For complex numbers z = x + iy:
where
and
💡 Example
x = -3:3;
r = sqrt(x)🔗 See also
🕔 History
Version
📄 Description
1.0.0
initial version
Last updated
Was this helpful?