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
FloatRTable.assign - assign a float into an element of the FloatRTable
Calling Sequence
void assign( int index[], float val ) throws MapleException
Parameters
index
-
index of the entry to assign
val
value to assign into the list
Description
The assign function assigns the Java float val into the element of the FloatRTable indexed by index.
The index parameter is an array of integers, one for each dimension of the FloatRTable. Each integer must be within the bounds determined by lowerBound and upperBound. The index for dimension is stored in the array at position .
As RTables do not have unique representations, elements of an RTable can be assigned to any time.
Examples
import com.maplesoft.openmaple.*;
import com.maplesoft.externalcall.MapleException;
class Example
{
public static void main( String notused[] ) throws MapleException
String mapleArgs[];
Engine engine;
FloatRTable a1;
int index[];
float e;
mapleArgs = new String[1];
mapleArgs[0] = "java";
engine = new Engine( mapleArgs, new EngineCallBacksDefault(),
null, null );
a1 = (FloatRTable)engine.evaluate( "Array( 1..2, 1..2, [[1.5,2.5],[3.5,4.5]], datatype=float[4]):" );
index = new int[2];
e = (float)11.5;
index[0] = 1;
index[1] = 1;
a1.assign( index, e );
e = (float)12.5;
index[0] = 2;
e = (float)13.5;
index[1] = 2;
e = (float)14.5;
System.out.println( a1 );
}
Executing this code produces the following output.
Array(1..2, 1..2, [[11.5000000,13.5000000],[12.5000000,14.5000000]], datatype = float[4], storage = rectangular, order = Fortran_order)
See Also
ExternalCalling/Java/MapleException, OpenMaple, OpenMaple/Java/API, OpenMaple/Java/FloatRTable, OpenMaple/Java/FloatRTable/select, OpenMaple/Java/RTable, OpenMaple/Java/RTable/lowerBound, OpenMaple/Java/RTable/upperBound
Download Help Document