R/angle.R

Defines functions angle Imag Real

Documented in angle Imag Real

##
##  a n g l e . R
##


Real <- function(z) Re(z)

Imag <- function(z) Im(z)

# Conj <- function(z) Conj(z)

# use abs() for Mod()

angle <- function(z) atan2(Im(z), Re(z))

Try the pracma package in your browser

Any scripts or data that you put into this service are public.

pracma documentation built on Nov. 10, 2023, 1:14 a.m.