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
Language and System Changes in Maple 10
Maple 10 includes the following language and system changes.
Sequences
You can use the seq command to generate numeric sequences without specifying an index variable. The one-parameter form is:
seq(1..4);
Also, you can now specify the size of the increment to use with seq.
seq(1..4, 1/2);
seq(f(i), i = 1..4, 1/2);
Improvements to the map Command
In Maple 10, the map command supports additional arguments in mappings over procedures that have special evaluation rules.
map(eval, [ 1 - x, 2 + x^2, sqrt(x) + 3 ], 'x'=0);
map(evalf, [ Pi, exp(1) ], 20);
Similar to map2, which maps over the second argument, map[n] allows mapping over the nth argument.
map[5](`+`, 1, 1, 1, 1, [ 10, 11, 12 ], 1, 1);
You can perform map operations using hardware floats.
M := LinearAlgebra[RandomMatrix](10^3, outputoptions = [ datatype = float[ 8 ] ]);
map[evalhf](`-`, M);
Mapping over Matrix, Array, and Vector datatypes can be done in-place.
M := Matrix([ [ 1, 2 ], [ 3, 4 ] ]);
map[inplace](`*`, M, 2);
M[ 1, 1 ];
Quick Help for Maple Objects
The Describe command generates a brief description for many procedures, modules, and other Maple objects based on information stored in them. This is a quick alternative to reading entire help pages.
Describe(Sockets);
# package for connection oriented TCP/IP sockets module Sockets: # open a client socket Open( ) # close a socket connection Close( ) # test for data availability on a socket Peek( ) # read text from a socket connection Read( ) # write text to a socket connection Write( ) # read a line of text from a socket connection ReadLine( ) # read binary data from a socket ReadBinary( ) # write binary data to a socket WriteBinary( ) # establish a service on a given port Server( ) # accept client requests Accept( ) # service requests, one at a time Serve( ) # internet address translation Address( ) # parse an URL into components ParseURL( ) # map service names to port numbers LookupService( ) # retrieve the name of the local host GetHostName( ) # get the hostname of the local side of a connection GetLocalHost( ) # get the port number of the local side of a connection GetLocalPort( ) # get the hostname of the peer of a connection GetPeerHost( ) # get the port number of the peer of a connection GetPeerPort( ) # return the process ID GetProcessID( ) # retrieve data about the local host HostInfo( ) # determine the status of all open socket connections Status( ) # configure a socket connection Configure( )
Programming Updates
For information on updates related to procedures and other aspects of Maple programming, see Programming Facilities Changes in Maple 10.
See Also
Index of New Maple 10 Features, Programming Facilities Changes in Maple 10
Download Help Document