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
Cache[Resize] - resize a cache table
Calling Sequence
Resize( n, c )
Parameters
n
-
integer: new size for the cache table
c
cache table or procedure: cache table to resize
Description
The Resize command creates a new cache table that is a resized version of an existing table. The new cache table is created so that it can store at least n elements. If c is a cache table, the new cache table is returned. If c is a procedure with a cache remember table, the remember table is resized and the new table replaces the old one. A reference to the new table is returned.
All the permanent elements of the existing table are added to the new table. Each temporary element of the existing table is inserted into the new table. However, due to the nature of cache tables there is no guarantee that all temporary elements from the existing table will be present in the new table.
For more information on cache tables, see Cache Package.
Examples
p := proc(x) return 1; end proc;
See Also
Cache Command, Cache Package, Cache[AddPermanent], Cache[AddTemporary], Cache[RemovePermanent], Cache[RemoveTemporary]
Download Help Document