How to retrieve location values in a matrix
Afficher commentaires plus anciens
Suppose i have a matrix 4x6 i.e. 6 columns and 4 rows. I want to extract different location values from the matrix i.e. 3rd location from column 1, 4th location value from column 2, 1st location value from column 3 etc. ([ 3 4 1 5 2 2]). Then i have to add these column location values. Pls suggest the code.
Réponse acceptée
Plus de réponses (1)
% e.g.:
A = randi([0, 13], 4,6)
A(3,1), A(4, 2), A(1,3)
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!