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[act] - perform an action on either a tensor_type, a spin coefficient table and curvature component table
Calling Sequence
act( action, args[2..nargs])
Parameters
action
-
name that is recognized by act() to designate the action wanted to be performed on an object.
args[2..nargs]
contains the objects to be acted upon and additional parameters depending on the specified action.
Description
action usually is the name of an admissible procedure, and,
acts on precisely ONE algebraic argument, and
the "target" argument it acts on is its FIRST argument. (Most of the standard functions like simplify(), normal() fall into this category.) Note: an admissible procedure may employ extra or optional argument(s), as long as they come after the "target" one in the parameter list, e.g. simplify( .. , trig ).
There are, however, two exceptions :
action can take the name display, used as a flag. In which case act displays the nonzero element/component(s) of the parameter immediately after it which is presumably either a tensor_type, spin coefficient table or a curvature component table.
action can also take subs, which is a maple function. subs is an exception because the "target" object in the function subs() is the last parameter.
To reinforce, any other input to action (which then must be the name of a procedure) must abide by the restrictions (1) and (2) above.
args[2..nargs] - if action was input 'display', then this contains ONE argument which is the object to display.
args[2..nargs] - if action is an "admissible" procedure name, then this is essentially the argument sequence of the procedure "action", including any possible extra arguments needed to specify the operation wanted, except the target argument is now of a more complex structure than just algebraic.
This function is part of the tensor package, and can be used in the form act(..) only after performing the command with(tensor), or with(tensor, act). The function can always be accessed in the long form tensor[act].
Examples
NON-ZERO INDEPENDENT COMPONENTS :"[1, 1] ="
"[2, 2] ="
CHARACTER :
INDEXING FUNCTION :
NON-ZERO SPIN COEFFICIENTS :"rho ="
"nu ="
"kappa ="
"tau ="
"sigma ="
"beta ="
"gamma ="
"epsilon ="
"alpha ="
NON-ZERO CURVATURE COMPONENTS :`Psi[2] =`
`Psi[3] =`
R =
See Also
tensor
Download Help Document