- `Z = abs(X)`

Calcula o módulo de `X`.

O módulo é definido por

> > `%abs(Z) = sqrt(x^2 + y^2)%`.

Por exemplo:

> > `abs(3 + 4i)`

> > `%abs(3+4i)=5%`

Veja também: `arg`.

### Referências

- https://www.mathworks.com/help/matlab/ref/abs.html
- https://octave.sourceforge.io/octave/function/abs.html
- https://mathworld.wolfram.com/AbsoluteValue.html
- https://pt.wikipedia.org/wiki/Fun%C3%A7%C3%A3o_modular
