org.nd4j.linalg.factory.Nd4j.createComplex()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(5.2k)|赞(0)|评价(0)|浏览(204)

本文整理了Java中org.nd4j.linalg.factory.Nd4j.createComplex()方法的一些代码示例,展示了Nd4j.createComplex()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Nd4j.createComplex()方法的具体详情如下:
包路径:org.nd4j.linalg.factory.Nd4j
类名称:Nd4j
方法名:createComplex

Nd4j.createComplex介绍

[英]Creates an ndarray
[中]制造混乱

代码示例

代码示例来源:origin: deeplearning4j/nd4j

  1. /**
  2. * Create a complex array from the given numbers
  3. * @param iComplexNumbers the numbers to use
  4. * @return the complex numbers
  5. */
  6. public static IComplexNDArray createComplex(IComplexNumber[] iComplexNumbers) {
  7. if (iComplexNumbers == null || iComplexNumbers.length < 1)
  8. throw new ND4JIllegalStateException("Number of complex numbers can't be < 1 for new INDArray");
  9. return createComplex(iComplexNumbers, new int[] {1, iComplexNumbers.length});
  10. }

代码示例来源:origin: deeplearning4j/nd4j

  1. @Override
  2. public IComplexNDArray mean(int... dimension) {
  3. return Nd4j.createComplex(super.mean(dimension));
  4. }

代码示例来源:origin: deeplearning4j/nd4j

  1. @Override
  2. protected IComplexNDArray create(DataBuffer buffer) {
  3. return Nd4j.createComplex(buffer, new int[] {1, (int) buffer.length()});
  4. }

代码示例来源:origin: deeplearning4j/nd4j

  1. @Override
  2. public IComplexNDArray divi(IComplexNumber n, IComplexNDArray result) {
  3. return Nd4j.createComplex(this).divi(n, result);
  4. }

代码示例来源:origin: deeplearning4j/nd4j

  1. /**
  2. * Creates an ndarray with the specified data
  3. *
  4. * @param data the number of columns in the row vector
  5. * @return ndarray
  6. */
  7. public static IComplexNDArray createComplex(float[] data) {
  8. return createComplex(data, Nd4j.order());
  9. }

代码示例来源:origin: deeplearning4j/nd4j

  1. protected INDArray create(int[] shape, char ordering) {
  2. if (this instanceof IComplexNDArray)
  3. return Nd4j.createComplex(shape, ordering);
  4. else
  5. return Nd4j.create(shape, ordering);
  6. }

代码示例来源:origin: deeplearning4j/nd4j

  1. /**
  2. *
  3. * @param data
  4. * @param shape
  5. * @param offset
  6. * @return
  7. */
  8. public static IComplexNDArray createComplex(double[] data, int[] shape, long offset) {
  9. return createComplex(data, shape, offset, Nd4j.order());
  10. }

代码示例来源:origin: deeplearning4j/nd4j

  1. private INDArray create(int[] shape, int[] stride) {
  2. if (this instanceof IComplexNDArray)
  3. return Nd4j.createComplex(shape, stride);
  4. else
  5. return Nd4j.create(shape, stride);
  6. }

代码示例来源:origin: deeplearning4j/nd4j

  1. /**
  2. * Creates an ndarray
  3. *
  4. * @param columns the number of columns in the row vector
  5. * @return ndarray
  6. */
  7. public static IComplexNDArray createComplex(int columns) {
  8. return createComplex(columns, order());
  9. }

代码示例来源:origin: deeplearning4j/nd4j

  1. /**
  2. * Creates a complex ndarray with the specified shape
  3. *
  4. * @param rows the rows of the ndarray
  5. * @param columns the columns of the ndarray
  6. * @param stride the stride for the ndarray
  7. * @return the instance
  8. */
  9. public static IComplexNDArray createComplex(int rows, int columns, int[] stride) {
  10. return createComplex(rows, columns, stride, order());
  11. }

代码示例来源:origin: deeplearning4j/nd4j

  1. /**
  2. * Creates a complex ndarray with the specified shape
  3. *
  4. * @param shape the shape of the ndarray
  5. * @param stride the stride for the ndarray
  6. * @return the instance
  7. */
  8. public static IComplexNDArray createComplex(int[] shape, int[] stride) {
  9. return createComplex(shape, stride, order());
  10. }

代码示例来源:origin: deeplearning4j/nd4j

  1. /**
  2. * Creates a complex ndarray with the specified shape
  3. *
  4. * @param rows the rows of the ndarray
  5. * @param columns the columns of the ndarray
  6. * @return the instance
  7. */
  8. public static IComplexNDArray createComplex(int rows, int columns) {
  9. return createComplex(rows, columns, order());
  10. }

代码示例来源:origin: deeplearning4j/nd4j

  1. /**
  2. * Assigns the given matrix (put) to the specified slice
  3. *
  4. * @param slice the slice to assign
  5. * @param put the slice to put
  6. * @return this for chainability
  7. */
  8. @Override
  9. public IComplexNDArray putSlice(int slice, INDArray put) {
  10. return putSlice(slice, Nd4j.createComplex(put));
  11. }

代码示例来源:origin: deeplearning4j/nd4j

  1. protected INDArray create(DataBuffer data, int[] shape, long offset) {
  2. if (this instanceof IComplexNDArray)
  3. return Nd4j.createComplex(data, shape, offset);
  4. else
  5. return Nd4j.create(data, shape, offset);
  6. }

代码示例来源:origin: deeplearning4j/nd4j

  1. protected INDArray create(DataBuffer data, int[] newShape, int[] newStrides, long offset, char ordering) {
  2. if (this instanceof IComplexNDArray)
  3. return Nd4j.createComplex(data, newShape, newStrides, offset, ordering);
  4. else
  5. return Nd4j.create(data, newShape, newStrides, offset, ordering);
  6. }

代码示例来源:origin: deeplearning4j/nd4j

  1. protected INDArray create(DataBuffer data, int[] newShape, int[] newStrides, long offset) {
  2. if (this instanceof IComplexNDArray)
  3. return Nd4j.createComplex(data, newShape, newStrides, offset);
  4. else
  5. return Nd4j.create(data, newShape, newStrides, offset);
  6. }

代码示例来源:origin: deeplearning4j/nd4j

  1. @Override
  2. public IComplexNDArray linearViewColumnOrder() {
  3. if (length() >= Integer.MAX_VALUE)
  4. throw new IllegalArgumentException("Length can not be >= Integer.MAX_VALUE");
  5. return Nd4j.createComplex(data, new int[] {(int) length(), 1}, offset());
  6. }

代码示例来源:origin: deeplearning4j/nd4j

  1. protected INDArray create(int[] shape) {
  2. if (this instanceof IComplexNDArray)
  3. return Nd4j.createComplex(shape, getStrides(shape, Nd4j.order()), 0);
  4. else
  5. return Nd4j.create(shape, getStrides(shape, Nd4j.order()), 0);
  6. }

代码示例来源:origin: deeplearning4j/nd4j

  1. @Override
  2. public IComplexNDArray hermitian() {
  3. IComplexNDArray result = Nd4j.createComplex(shape());
  4. IComplexDouble c = Nd4j.createDouble(0, 0);
  5. for (int i = 0; i < slices(); i++)
  6. for (int j = 0; j < columns(); j++)
  7. result.putScalar(j, i, getComplex(i, j, c).conji());
  8. return result;
  9. }

代码示例来源:origin: deeplearning4j/nd4j

  1. /**
  2. * Computes the eigenvalues of a general matrix.
  3. */
  4. public static IComplexNDArray eigenvalues(INDArray A) {
  5. assert A.rows() == A.columns();
  6. INDArray WR = Nd4j.create(A.rows(), A.rows());
  7. INDArray WI = WR.dup();
  8. Nd4j.getBlasWrapper().geev('N', 'N', A.dup(), WR, WI, dummy, dummy);
  9. return Nd4j.createComplex(WR, WI);
  10. }

相关文章