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
codegen[makeproc] - make a Maple procedure from formulae
Calling Sequence
makeproc(a, x)
makeproc(a, x, ...)
Parameters
a
-
formula, list, array of formulae, or Array of formulae
x
symbol or a list of symbols
Description
The first argument a is a Maple formula, or a list of equations (which is understood to be a sequence of assignments), a named array of formulae, or an Array of formulae. The second argument x is a symbol or a list of symbols. The makeproc command returns a Maple procedure which evaluates a(x). The symbols in x may include types.
The optional arguments , , and specify whether symbols are to be parameters, local variables, or global variables respectively. P, L, G must be lists of symbols, or symbols with types.
Examples
makeproc(f,[x,y,t]);
makeproc(f,[x,y]);
makeproc(a,x::numeric);
makeproc(A,[x,y]);
makeproc(A,[x,y,A]);
makeproc(CS,x);
makeproc(CS,parameters=[x::numeric],locals=[s,c],globals=[Y]);
See Also
codegen[joinprocs], codegen[optimize]
Download Help Document