How to extract information from matrix?
Afficher commentaires plus anciens
If i have this matrix
B = [ 1 1 0 1
0 0 0 0
0 1 0 0
0 1 0 0 ]
how i can in some way to extract these information
- 1 1 0 1 , 1st row
- 1 0 1 1 , second column
Réponses (1)
R=B(1,:);
C=B(:,2);
doc colon
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!