Tabnine Logo
Exp.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
jscl.math.function.Exp
constructor

Best Java code snippets using jscl.math.function.Exp.<init> (Showing top 9 results out of 315)

origin: org.solovyev/jscl

  @Nonnull
  public Variable newInstance() {
    return new Exp(null);
  }
}
origin: org.solovyev/jscl

public Generic selfElementary() {
  return new Exp(
      parameters[0]
  ).selfElementary().subtract(
      new Exp(
          parameters[0].negate()
      ).selfElementary()
  ).multiply(Constants.Generic.HALF);
}
origin: org.solovyev/jscl

public Generic selfElementary() {
  return new Exp(
      parameters[0]
  ).selfElementary().add(
      new Exp(
          parameters[0].negate()
      ).selfElementary()
  ).multiply(Constants.Generic.HALF);
}
origin: org.solovyev/jscl

public Generic selfElementary() {
  return new Exp(
      Constants.Generic.I.multiply(parameters[0])
  ).selfElementary().add(
      new Exp(
          Constants.Generic.I.multiply(parameters[0].negate())
      ).selfElementary()
  ).multiply(Constants.Generic.HALF);
}
origin: org.solovyev/jscl

public Generic selfExpand() {
  if (parameters[0].signum() < 0) {
    return new Inverse(new Exp(parameters[0].negate()).selfExpand()).selfExpand();
  } else if (parameters[0].signum() == 0) {
    return JsclInteger.valueOf(1);
  }
  return expressionValue();
}
origin: org.solovyev/jscl

public Generic selfElementary() {
  final Generic power = I.multiply(parameters[0]);
  final Generic e = new Exp(power).selfElementary().subtract(new Exp(I.multiply(parameters[0].negate())).selfElementary()).multiply(I.negate().multiply(HALF));
  return e;
}
origin: org.solovyev/jscl

public Generic selfElementary() {
  return new Exp(
      new Ln(
          parameters[0]
      ).selfElementary().multiply(
          parameters[1]
      )
  ).selfElementary();
}
origin: org.solovyev/jscl

public Generic selfSimplify() {
    return new Inverse(new Exp(parameters[0].negate()).selfSimplify()).selfSimplify();
  } else if (parameters[0].signum() == 0) {
    return JsclInteger.valueOf(1);
      Generic result = JsclInteger.valueOf(1);
      for (Generic sumElement : sumElements) {
        result = result.multiply(new Exp(sumElement).selfSimplify());
  if (n[0].compareTo(JsclInteger.valueOf(1)) == 0 && n[1].compareTo(JsclInteger.valueOf(1)) == 0) ;
  else return new Pow(
      new Exp(n[2]).selfSimplify(),
      new Fraction(n[0], n[1]).selfSimplify()
  ).selfSimplify();
origin: org.solovyev/jscl

} else if (v instanceof Exp) {
  Generic g[] = ((Exp) v).getParameters();
  return new Exp(new Conjugate(g[0]).selfSimplify()).selfSimplify();
} else if (v instanceof Ln) {
  Generic g[] = ((Ln) v).getParameters();
jscl.math.functionExp<init>

Popular methods of Exp

  • antiDerivative
  • bodyToMathML
  • expressionValue
  • getParameters
  • selfElementary
  • selfExpand
  • selfSimplify

Popular in Java

  • Start an intent from android
  • onCreateOptionsMenu (Activity)
  • setScale (BigDecimal)
  • startActivity (Activity)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • JLabel (javax.swing)
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now