Tabnine Logo
ImplicitFunction.selfExpand
Code IndexAdd Tabnine to your IDE (free)

How to use
selfExpand
method
in
jscl.math.function.ImplicitFunction

Best Java code snippets using jscl.math.function.ImplicitFunction.selfExpand (Showing top 2 results out of 315)

origin: org.solovyev/jscl

public Generic derivative(int n) {
  int c[] = new int[derivations.length];
  for (int i = 0; i < c.length; i++) {
    if (i == n) c[i] = derivations[i] + 1;
    else c[i] = derivations[i];
  }
  return new ImplicitFunction(name, parameters, c, subscripts).selfExpand();
}
origin: org.solovyev/jscl

public Generic antiDerivative(int n) throws NotIntegrableException {
  int c[] = new int[derivations.length];
  for (int i = 0; i < c.length; i++) {
    if (i == n) {
      if (derivations[i] > 0) c[i] = derivations[i] - 1;
      else throw new NotIntegrableException(this);
    } else c[i] = derivations[i];
  }
  return new ImplicitFunction(name, parameters, c, subscripts).selfExpand();
}
jscl.math.functionImplicitFunctionselfExpand

Popular methods of ImplicitFunction

  • <init>
  • bodyToMathML
  • compareDerivation
  • derivationToJava
  • derivationToMathML
  • derivationToString
  • expressionValue
  • getParameters
  • nameToMathML

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSystemService (Context)
  • startActivity (Activity)
  • requestLocationUpdates (LocationManager)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • From CI to AI: The AI layer in your organization
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