- `THETA = arg (Z)`
- `THETA = angle (Z)`

Calcula o argumento, ou seja, o ângulo de `Z`.

O argumento, ou ângulo, é definido por `%Theta = atan2(Y, X)%`, em radianos.

Por exemplo:

> > `arg (3 + 4i)`

> > `%arg (3 + 4i) = 0.927295218001612232%`

Veja também: `abs`.

### Referências

- https://www.mathworks.com/help/matlab/ref/arg.html
- https://octave.sourceforge.io/octave/function/arg.html
