|
|
| File Information |
| Description |
This is a compact and improved extension of cartprod.m by David Fass.
SETPROD product of multiple sets.
X = SETPROD(A,B,C,...) returns the cartesian product of the sets A,B,C, etc, where A,B,C, are numeric or character arrays.
Example: A = [-1 -3 -5]; B = [10 11]; C = [0 1];
X = SETPROD(A,B,C)
X =
-5 10 0
-3 10 0
-1 10 0
-5 11 0
-3 11 0
-1 11 0
-5 10 1
-3 10 1
-1 10 1
-5 11 1
-3 11 1
-1 11 1 |
| Acknowledgements |
The author wishes to acknowledge the following in the creation of this submission:
CARTPROD: Cartesian product of multiple sets
|
| MATLAB release |
MATLAB 7 (R14)
|
|
Tags for This File
|
| Everyone's Tags |
|
| Tags I've Applied |
|
| Add New Tags |
Please login to tag files.
|
| Comments and Ratings (3) |
| 16 Feb 2005 |
Marco Pausini
|
|
|
| 18 Feb 2006 |
Jos van der Geest
|
|
|
| 01 Oct 2009 |
Rob Campbell
|
|
|
| Updates |
| 24 Sep 2004 |
correction in the description |
| 24 Sep 2004 |
The slow eval function has been removed now. The code is now even more compact and fast. The remaining eval function is only for display. Any further improvements are welcomed! |
| 27 Sep 2004 |
Correction in the Description |
| 20 Oct 2004 |
removed one check that required symbolic toolbox |
| 29 Oct 2004 |
simplified one line |
| 18 Nov 2004 |
optimised by removing repmat and employing cell |
| 23 Feb 2005 |
slight improvement |
| 27 Feb 2006 |
Re-written to avoid the EVAL function. |
|
MATLAB Central Terms of Use
NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for
all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content.
Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available
via MATLAB Central.
Read the complete Terms prior to use.
Contact us at files@mathworks.com