Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
Algebraic - Java represention of an algebraic object
Description
The com.maplesoft.openmaple.Algebraic class is the base class for every Java OpenMaple class that represents a Maple object. Its member functions provide the basic operations useful for any Maple object.
Method Summary
String Algebraic.toString()
toString converts the Maple object into a string, which when evaluated returns the same object.
Algebraic Algebraic.eval()
eval returns an Algebraic representing the result of evaluating the current Maple object.
double Algebraic.evalhf()
evalhf returns a double, which is the result of calling evalhf on the current Maple object.
Algebraic Algebraic.uneval()
uneval returns an Algebraic, which is the result of wrapping uneval quotes around the current object.
Algebraic Algebraic.unique()
unique returns an Algebraic, which represents the unique Maple object for the value of the current Algebraic. If the current Algebraic is already unique, then a reference to the current object is returned.
void Algebraic.dispose()
dispose removes the link between the Java Algebraic and the Maple expression. The allows Maple to collect and reuse the memory associated with the Maple Expression. Once an Algebraic has been disposed it is an error to call any member function except isDisposed. For more information on memory issues, see OpenMaple/Java/memory.
boolean Algebraic.isDisposed()
isDisposed returns true if the current Algebraic has been disposed and false otherwise. For more information on memory issues, see OpenMaple/Java/memory.
boolean Algebraic.dagEquals( Algebraic )
dagEquals compares two Algebraic objects. If they represent the same Maple DAG, it returns true, otherwise it returns false.
boolean Algebraic.isNULL()
isNULL returns true if the Algebraic object is a representation of the Maple NULL, otherwise it returns false.
boolean Algebraic.isSet()
isSet returns true if the Algebraic object is a representation of a Maple set, otherwise it returns false.
boolean Algebraic.isStop()
isStop returns true if the Algebraic object is a representation of a Maple stop DAG, otherwise it returns false.
See Also
OpenMaple, OpenMaple/Java/Algebraic, OpenMaple/Java/API, OpenMaple/Java/ComplexNumeric OpenMaple/Java/Examples, OpenMaple/Java/Expseq OpenMaple/Java/List, OpenMaple/Java/memory OpenMaple/Java/Name, OpenMaple/Java/Numeric OpenMaple/Java/Procedure, OpenMaple/Java/Table
Download Help Document