How do I check if all numbers in a vector are the same?

7 visualizaciones (últimos 30 días)
Samuele Bolotta
Samuele Bolotta el 1 de Abr. de 2021
Editada: Stephen23 el 1 de Abr. de 2021
I have a row vector A. I'd like to verify whether all numbers in this vector are the same. How can I do this?
Thanks!

Respuesta aceptada

Stephen23
Stephen23 el 1 de Abr. de 2021
Editada: Stephen23 el 1 de Abr. de 2021
all(diff(A)==0)
min(A)==max(A) % does not work for NaN
range(A)==0 % RANGE requires the statistics toolbox
numel(unique(A))==1
  1 comentario
Robert Brown
Robert Brown el 1 de Abr. de 2021
Stephen actually gave not only 1 but what appears to be 3 solutions to the problem ! very good ! (overachiever !)
I don't seem to have range(A). Is that in a newer version of MATLAB? or is it in a toolbox?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by