select certain matrix elements
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
zilai si
il 15 Ott 2019
Modificato: Fabio Freschi
il 15 Ott 2019
hello,everyone
i just want to ask how to select eg the 1-10 and 20-30 rows elements in the first column.
like A(1:10 and 20:30,1)
0 Commenti
Risposta accettata
Fabio Freschi
il 15 Ott 2019
Modificato: Fabio Freschi
il 15 Ott 2019
You can simply concatenate your ranges using square brackets:
A([1:10 20:30],1)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!