Ayuda a los desarrolladores a desarrollar modelos ML en JavaScript y usar ML directamente en el navegador o en Node.js.
La función tf.complex() se utiliza para convertir dos números reales en un número complejo.
Sintaxis:
tf.complex(real, imag)
Parámetro:
- real: Puede ser cualquiera de estos tres tf.Tensor, TypedArray o Array. Representa la parte real del número complejo formado.
- imag: También puede ser cualquiera de estos tres tf.Tensor, TypedArray o Array. Representa la parte imaginaria del número complejo formado.
Valor devuelto: Devuelve un tf.Tensor.
Nota: El parámetro real es tf.Tensor representa la parte real del número complejo y el parámetro imag es tf.Tensor representa la parte imaginaria del número complejo.
Por ejemplo,
- Sea real [r0, r1, r2]
- Sea imag [i0, i1, i2]
- El número complejo convertido será [r0 + i0, r1 + i1, r2 + i2]
Ejemplo 1:
Javascript
// The complex function containing the // real and imag Typedarray const complex = tf.complex ([5,3],[1,3]); // Printing the tensor complex.print();
Producción:
Tensor [5 + 1j, 3 + 3j]
Ejemplo 2:
Javascript
// The complex function containing the // real and imag Typedarray const complex = tf.complex( tf.tensor1d([4.75, 5.75]), tf.tensor1d([2.25, 3.25]) ); // Printing the tensor complex.print();
Producción:
Tensor [4.75 + 2.25j, 5.75 + 3.25j]
Referencia: https://js.tensorflow.org/api/latest/#complex