Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Numeric - Java representation of a numeric object
Description
The com.maplesoft.openmaple.Numeric class represents a Maple numeric object (a float or an integer). As Numeric publicly inherits from Algebraic, it provides all of the member functions from the Algebraic class as well as those listed here.
Method Summary
boolean isByte()
isByte returns true if the value represented by this Numeric is an integer within the range of a Java byte.
boolean isShort()
isShort returns true if the value represented by this Numeric is an integer within the range of a Java short.
boolean isInt()
isInt returns true if the value represented by this Numeric is an integer within the range of a Java int.
boolean isLong()
isLong returns true if the value represented by this Numeric is an integer within the range of a Java long.
boolean isInteger()
isInteger returns true if the value represented by this Numeric is an integer.
boolean isUnnamedZero()
isUnnamedZero returns true if the value represented by this Numeric is zero.
float floatValue()
floatValue converts the value represented by the Numeric to a float.
double doubleValue()
doubleValue returns the value represented in the Numeric as a Java double.
byte byteValue()
byteValue returns the value represented by the Numeric as a Java byte.
short shortValue()
shortValue returns the value represented by the Numeric as a Java short.
int intValue()
intValue returns the value represented by the Numeric as a Java int.
long longValue()
longValue returns the value represented by the Numeric as a Java long.
See Also
OpenMaple, OpenMaple/Java/Algebraic, OpenMaple/Java/API, OpenMaple/Java/Examples
Download Help Document