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
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