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

例:
T的数值中包含14,9,16这3个种类的值,
T = [14 14 9 16 9 9 16 14];
如何对T进行函数处理,得到3这个答案?

 Respuesta aceptada

kei hin
kei hin el 25 de Dic. de 2023

0 votos

num = length(unique(T));

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

DY
el 25 de Dic. de 2023

Respondida:

el 25 de Dic. de 2023

Community Treasure Hunt

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

Start Hunting!