how i can remove row and column from matrix
4 次查看(过去 30 天)
显示 更早的评论
how i can remove row and column from matrix
ex: A=[1,2,3;4,5,6;7,8,9;10,11,12]
i need to remove second row and second column from the above matrix
A =[
1 3
7 9
10 12]
0 个评论
采纳的回答
Walter Roberson
2016-7-29
A = A([1, 3:end), [1, 3:end]);
or
A(2,:) = [];
A(:,2) = [];
You cannot use the [] delete operator on both rows and columns at the same time.
3 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!