is.complex()
La función en R Language se usa para verificar si el objeto que se le pasa como argumento es de tipo de datos complejo.
Sintaxis: es.complejo(x)
Parámetros:
x: Objeto a comprobar
Ejemplo 1:
# R program to check if # object is of complex type # Calling is.complex() function is.complex(1 + 0i) is.complex(1.5 + 2i) is.complex(-1.5 + 2i)
Producción:
[1] TRUE [1] TRUE [1] TRUE
Ejemplo 2:
# R program to check if # object is of complex type # Creating a vector x1 <- (rep(1:4) + 1i*(4:1)) x1 # Calling is.complex() function is.complex(x1)
Producción:
[1] 1+4i 2+3i 3+2i 4+1i [1] TRUE
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA