Matrix Extraction based on summation.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Fayyaz
el 7 de Abr. de 2015
Respondida: John D'Errico
el 7 de Abr. de 2015
Hi.
I have 81*81 matrix. I need to extract a matrix from that, for example of order 81*2, which include two columns i.e. the 34th column and the sum of 22,39 and 59 columns.
I will be really thankful for any suggestion or help. Thanks
0 comentarios
Respuesta aceptada
John D'Errico
el 7 de Abr. de 2015
Easy peasy.
B = A(:,[34 22 39 59])*[1 0 0 0;0 1 1 1]';
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!