How to retrieve location values in a matrix
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (1)
% e.g.:
A = randi([0, 13], 4,6)
A(3,1), A(4, 2), A(1,3)
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!