SCLRCMPRS

版本 1.0.0.0 (574 字节) 作者: Mukhtar Ullah
Squeezes nonscalar arrays to scalars, if possible.
1.9K 次下载
更新时间 2005/1/27

无许可证

SCLRCMPRS squeezes nonscalar arrays to scalars, if possible.
SCLRCMPRS(X) returns a scalar element if the array X is only the repetition of this scalar, X otherwise.

[X1,X2,...,Xn] = SCLRCMPRS(X1,X2,...,Xn) replaces non-scalar arrays having the same scalar repeated, with the scalars.

Example:
>> c1 = magic(4); c2 = repmat(2,5); c3 = 15; c4 = [9 9];
>> [c1,c2,c3,c4] = SCLRCMPRS(c1,c2,c3,c4)

c1 =

16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1

c2 =

2

c3 =

15

c4 =

9

引用格式

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

MATLAB 版本兼容性
创建方式 R14
兼容任何版本
平台兼容性
Windows macOS Linux

Community Treasure Hunt

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

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

Renamed to SCLRCMPRS