Azzera filtri
Azzera filtri

how can I delete some rows from a matrix

2 visualizzazioni (ultimi 30 giorni)
momo
momo il 5 Apr 2024
Risposto: Star Strider il 5 Apr 2024
Hello,
I have a matrix with 3 col and many rows, I need to to create a new matrix with only odd romws numbers and delet the pair rows.
Someone have an idea how I can do this?
Thank you very much

Risposte (1)

Star Strider
Star Strider il 5 Apr 2024
This creates a new matrix with only the odd rows from the original matrix —
A = randi(9, 10,3)
A = 10x3
4 5 3 5 5 5 7 3 9 3 4 5 5 7 8 2 4 4 3 4 3 5 2 9 2 5 3 7 4 2
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
Anew = A(1:2:end,:)
Anew = 5x3
4 5 3 7 3 9 5 7 8 3 4 3 2 5 3
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
See the documentation section on Matrix Indexing for more information.
.

Tag

Prodotti


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by