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
applyop - apply a function to specified operand(s) of an expression
Calling Sequence
applyop( f, i, e )
applyop( f, i, e, ..., xk, ...)
Parameters
f
-
function
i
specifies the operand(s) in e
e
expression
x[k]
optional arguments to f
Description
The applyop command manipulates the selected parts of an expression. The first argument, f, is applied to the operands of e specified by i.
If i is an integer, applyop( f, i, e) applies f to the ith operand of e. This is equivalent to subsop( i = f(op( i, e)), e). For example, if the value of e is the sum , applyop( f, 2, e) computes .
If i is a list of integers, the call applyop( f, i, e) is equivalent to subsop( i = f(op( i, e)), e). This allows you to manipulate any suboperand of an expression.
If i is a set, f is applied simultaneously to all operands of e specified in the set. Note: applyop( f, {}, e) returns e.
Any additional arguments xk are passed as additional arguments to f in the order given.
Examples
To expand the argument to the logarithm in e:
To factor the argument to the logarithm in e over R:
See Also
map, op, subsop
Download Help Document