如何得到一个由数字构成的向量中有几组数字?

1 Ansicht (letzte 30 Tage)
DY
DY am 25 Dez. 2023
Beantwortet: kei hin am 25 Dez. 2023
例:
T的数值中包含14,9,16这3个种类的值,
T = [14 14 9 16 9 9 16 14];
如何对T进行函数处理,得到3这个答案?

Akzeptierte Antwort

kei hin
kei hin am 25 Dez. 2023
num = length(unique(T));

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!