SETPROD

版本 1.0.0.0 (537 字节) 作者: Mukhtar Ullah
Cartesian Product of Sets.
4.2K 次下载
更新时间 2006/2/27

无许可证

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

引用格式

Mukhtar Ullah (2024). SETPROD (https://www.mathworks.com/matlabcentral/fileexchange/5898-setprod), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R14
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Linear Algebra 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0

Re-written to avoid the EVAL function.