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
RTableLowerBound - query the lower bound of the ith dimension of an rtable in external code
RTableUpperBound - query the upper bound of the ith dimension of an rtable in external code
Calling Sequence
RTableLowerBound(kv, rt, dim)
RTableUpperBound(kv, rt, dim)
Parameters
kv
-
kernel handle returned by StartMaple
rt
Maple rtable object
dim
integer specifying dimension
Description
These functions are part of the OpenMaple interface to Microsoft(R) Visual Basic(R).
The RTableLowerBound function returns the lower bound of dimension dim for the given rtable, rt. For rtables with subtype Matrix and Vector, this always returns 1. For Arrays, this command is equivalent to calling lhs([rtable_dims(A)][dim]), or op([2,dim,1],rt).
The RTableUpperBound function returns the upper bound of dimension dim for the given rtable, rt. For rtables with subtype Matrix and Vector, this is equivalent to to calling op([1,dim],rt). For Arrays, this command is equivalent to calling op([2,dim,2],rt). For all rtables, it is equivalent to calling rhs([rtable_dims(A)][dim]).
Examples
Dim rt As Long
rt = EvalMapleStatement(kv, "Matrix([[1,2,3],[4,5,6]]);")
Write #1, RTableLowerBound(kv, rt, 1), RTableUpperBound(kv, rt, 1)
Write #1, RTableLowerBound(kv, rt, 2), RTableUpperBound(kv, rt, 2)
See Also
OpenMaple, OpenMaple/VB/API, OpenMaple/VB/Examples, rtable, rtable_dims, trademark
Download Help Document