SETPROD

Version 1.0.0.0 (537 octets) par Mukhtar Ullah
Cartesian Product of Sets.
4,3K téléchargements
Mise à jour 27 fév. 2006

Aucune licence

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

Citation pour cette source

Mukhtar Ullah (2024). SETPROD (https://www.mathworks.com/matlabcentral/fileexchange/5898-setprod), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R14
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Linear Algebra dans Help Center et MATLAB Answers
Remerciements

Inspiré par : CARTPROD: Cartesian product of multiple sets

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Publié le Notes de version
1.0.0.0

Re-written to avoid the EVAL function.