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