Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
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