Delete columns of matrices in a cell array
이전 댓글 표시
I have a 1x5 cell array ,A, and each cell contains a 3x3 matrix. I'm trying to delete the second column from the matrix in each cell without using a for loop. I thought the following code might work but it does not. Any one has a good solution? Thanks.
Code I tried:
cellfun(@(x)x(:,2)= [],A)
Error message: The expression to the left of the equals sign is not a valid target for an assignment.
채택된 답변
추가 답변 (1개)
Azzi Abdelmalek
2013년 2월 21일
A={rand(3) rand(3) rand(3)}
cellfun(@(x) x(:,[1 3]),A,'un',0)
카테고리
도움말 센터 및 File Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!