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
tensor[get_compts] - return the components field of a tensor_type
tensor[get_char] - return the index character field of a tensor_type
tensor[get_rank] - return the rank of a tensor_type
Calling Sequence
get_compts(A)
get_char(A)
get_rank(A)
Parameters
A
-
tensor_type object
Description
The function get_compts(A) returns the components of the tensor_type A.
The function get_char(A) returns the index character of the tensor_type A.
The function get_rank(A) returns the rank of the tensor_type A.
These procedures are not absolutely necessary since the fields of any table can be accessed directly. However, they provide a uniform and controlled access of the information contained in the tensor_type data type.
These functions are part of the tensor package, and so can be used in the form get_compts(..) / get_char(..) only after performing the command with(tensor), or with(tensor, get_compts) / with(tensor, get_char). These functions can always be accessed in the long form tensor[get_compts](..) / tensor[get_char](..).
Examples
Get the components, index character, and rank of the tensor T:
See Also
tensor, tensor[create]
Download Help Document