How do I select some data from a matrix?
Mostrar comentarios más antiguos
I have for example this matrix
A=[2 0.9;
2 0.8;
2 1.0;
2 0.8;
3 0.3;
3 0.7;
3 0.8;
3 0.7]
I want to have just the first two rows of A in each repetition. The "repetition" is in column 1 of A. Here, the repetition is 2 and 3. So B equals:
B=[2 0.9;
2 0.8;
3 0.3;
3 0.7]
Thanks for help.
2 comentarios
Azzi Abdelmalek
el 28 de Mzo. de 2016
this is not clear, what kind of repetition? only in in first column?
Rita
el 29 de Mzo. de 2016
Editada: Image Analyst
el 29 de Mzo. de 2016
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Resizing and Reshaping Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!