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

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

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

Nd4j.createFloat介绍

[英]Create double
[中]创造双重

代码示例

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

  1. UNIT = Nd4j.createFloat(1, 0);
  2. ZERO = Nd4j.createFloat(0, 0);
  3. NEG_UNIT = Nd4j.createFloat(-1, 0);
  4. ENFORCE_NUMERICAL_STABILITY = pp.toBoolean(NUMERICAL_STABILITY);
  5. DISTRIBUTION_FACTORY = distributionFactoryClazz.newInstance();

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

  1. /**
  2. * Returns the exp of a complex number:
  3. * Let r be the realComponent component and i be the imaginary
  4. * Let ret be the complex number returned
  5. * ret -> exp(r) * cos(i), exp(r) * sin(i)
  6. * where the first number is the realComponent component
  7. * and the second number is the imaginary component
  8. *
  9. * @param d the number to getFromOrigin the exp of
  10. * @return the exponential of this complex number
  11. */
  12. public static IComplexFloat exp(IComplexFloat d) {
  13. return Nd4j.createFloat((float) FastMath.exp(d.realComponent()) * (float) FastMath.cos(d.imaginaryComponent()),
  14. (float) FastMath.exp(d.realComponent()) * (float) FastMath.sin(d.imaginaryComponent()));
  15. }

代码示例来源:origin: org.nd4j/nd4j-jcublas-common

  1. /**
  2. * Create a complex float from a cuda float
  3. *
  4. * @param cuComplex the cuda float to convert
  5. * @return the create float
  6. */
  7. public static IComplexFloat toCuFloat(cuComplex cuComplex) {
  8. return Nd4j.createFloat(cuComplex.x, cuComplex.y);
  9. }

代码示例来源:origin: org.nd4j/nd4j-java

  1. @Override
  2. public IComplexNumber dup() {
  3. return Nd4j.createFloat(real,imag);
  4. }
  5. }

代码示例来源:origin: org.nd4j/nd4j-netlib-blas

  1. /**
  2. * Convert to a float
  3. *
  4. * @return this complex number as a float
  5. */
  6. @Override
  7. public IComplexFloat asFloat() {
  8. return Nd4j.createFloat((float) real(), (float) imag());
  9. }

代码示例来源:origin: org.nd4j/nd4j-x86

  1. /**
  2. * Convert to a float
  3. *
  4. * @return this complex number as a float
  5. */
  6. @Override
  7. public IComplexFloat asFloat() {
  8. return Nd4j.createFloat((float) real(), (float) imag());
  9. }

代码示例来源:origin: org.nd4j/nd4j-jcublas-common

  1. @Override
  2. public IComplexFloat getComplexFloat(int i) {
  3. return Nd4j.createFloat(getFloat(i), getFloat(i + 1));
  4. }

代码示例来源:origin: org.nd4j/nd4j-cuda-7.5

  1. @Override
  2. public IComplexFloat getComplexFloat(long i) {
  3. return Nd4j.createFloat(getFloat(i), getFloat(i + 1));
  4. }

代码示例来源:origin: org.nd4j/nd4j-api

  1. UNIT = Nd4j.createFloat(1, 0);
  2. ZERO = Nd4j.createFloat(0, 0);
  3. NEG_UNIT = Nd4j.createFloat(-1, 0);
  4. ENFORCE_NUMERICAL_STABILITY =
  5. Boolean.parseBoolean(System.getProperty(NUMERICAL_STABILITY, String.valueOf(false)));

代码示例来源:origin: org.nd4j/nd4j-api

  1. /**
  2. * Returns the exp of a complex number:
  3. * Let r be the realComponent component and i be the imaginary
  4. * Let ret be the complex number returned
  5. * ret -> exp(r) * cos(i), exp(r) * sin(i)
  6. * where the first number is the realComponent component
  7. * and the second number is the imaginary component
  8. *
  9. * @param d the number to getFromOrigin the exp of
  10. * @return the exponential of this complex number
  11. */
  12. public static IComplexFloat exp(IComplexFloat d) {
  13. return Nd4j.createFloat((float) FastMath.exp(d.realComponent()) * (float) FastMath.cos(d.imaginaryComponent()),
  14. (float) FastMath.exp(d.realComponent()) * (float) FastMath.sin(d.imaginaryComponent()));
  15. }

相关文章