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
combinat[subsets] - iterate over the power set of a set or list
Calling Sequence
subsets(L)
Parameters
L
-
set or list of elements
Description
The function subsets is an iterator for generating the power set of a set one set at a time. It returns a table with two entries: finished and .
The finished entry will be either true or false, depending on whether the end of the set has been reached. It is initially set to false.
The nextvalue entry is a procedure that traverses the power set. The result of a call to will be the next set in the power set. When the entire set has been traversed, nextvalue will set the value of finished to true.
If the input L is a set, the subsets are returned as sets. If the input is a list, the subsets are returned as lists. Otherwise the only difference is in the order in which the subsets are generated.
The command with(combinat,subsets) allows the use of the abbreviated form of this command.
Examples
See Also
combinat, combinat[choose], combinat[powerset]
Download Help Document