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
tensor[lin_com] - linear combination of any number of tensor_types
Calling Sequence
lin_com(c1, T1, c2, T2, ...., cN, TN)
Parameters
c1, c2, c3, ..., cN
-
algebraic coefficients in the linear combination to be formed
T1, T2, T3, ..., TN
tensor_types of identical characters and sharing the same space dimension
Description
This function forms the following linear combination of tensors:
Each * represents a scalar multiplication and each + represents naturally a tensor addition.
There is no limit on how many tensors to be summed; that is, N can be any positive integer.
Any of the algebraic c's can be omitted, in which case it is by default substituted by 1.
Simplification: This routine uses the `tensor/lin_com/simp` routine for simplification purposes. The simplification routine is applied to each component of result after it is computed. By default, `tensor/lin_com/simp` is initialized to the `tensor/simp` routine. It is recommended that the `tensor/lin_com/simp` routine be customized to suit the needs of the particular problem. It should be noted that `tensor/lin_com/simp` is used frequently as a simplifier by other routines. See ?tensor[simp] for a list of simplifiers used by each routine of the package.
This function is part of the tensor package, and so can be used in the form lin_com(..) only after performing the command with(tensor) or with(tensor, lin_com). The function can always be accessed in the long form tensor[lin_com](..).
Examples
The following is the direct definitions of the tensor_types T1, T2, T3, without using the function tensor[create].
Form the linear combination of some scalars:
See Also
tensor, tensor[simp]
Download Help Document