How to compare the length of two matrices and pick the shorter one?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
matlabuser12
el 15 de Ag. de 2016
Respondida: Walter Roberson
el 15 de Ag. de 2016
have two nx1 matrices that I want to say for whichever matrix is shorter use that length.
0 comentarios
Respuesta aceptada
Walter Roberson
el 15 de Ag. de 2016
shorter_length = min( length(FirstVector), length(SecondVector) );
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Multidimensional Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!