SETPROD

Cartesian Product of Sets.
4,3K Descargas
Actualizado 27 feb 2006

Sin licencia

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

Citar como

Mukhtar Ullah (2026). SETPROD (https://es.mathworks.com/matlabcentral/fileexchange/5898-setprod), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R14
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Linear Algebra en Help Center y MATLAB Answers.
Agradecimientos

Inspirado por: CARTPROD: Cartesian product of multiple sets

Versión Publicado Notas de la versión
1.0.0.0

Re-written to avoid the EVAL function.