how to know pixel' s value of matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
hello i have a matrix (a)
a= [a b c d;
e f g h;
i j k l]
- i wanna test/know the values of d,h,l and i j k l
0 Commenti
Risposta accettata
the cyclist
il 2 Gen 2016
For the last column
a(:,end)
OR
a(:,4)
For the last row:
a(end,:)
OR
a(3,:)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Numeric Types in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!