How do I resize an irregular matrix?
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sorry, I am relatively new at matlab and I can't seem to figure out an answer online. Say for example, I have a vector A = (3,1,4,1,3,6,9,3,1,3), how do I make a vector B from vector A so that it takes the maximum value of vector A to the end of vector A so that vector B is (9,3,1,3)?
0 comentarios
Respuestas (1)
Image Analyst
el 19 de Oct. de 2017
Try this:
A = [3,1,4,1,3,6,9,3,1,3]
[~, indexOfMax] = max(A);
B = A(indexOfMax:end)
0 comentarios
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices 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!