remove row of matrix inside cell
Afficher commentaires plus anciens
I have A
A={[1,2;4,5;8,9],[1,2,3;4,5,6;1,4,5;2,4,5],[3,4,5,6;1,2,3,4;8,9,0,8;3,4,5,6]}
B={[1;3],[2;4],[2]}
I want to remove B rows from A.
I use this code, but it has a error
cellfun(@(m,n)m(n,:)=[],A,B,'uni',0);
result should be
A={[4,5],[1,2,3;1,4,5],[3,4,5,6;8,9,0,8;3,4,5,6]}
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Operators and Elementary Operations 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!