matrix manipulation
1 次查看(过去 30 天)
显示 更早的评论
how to remove row(s) or column(s) of a matrix and save the new matrix with different name? and is there any limit on how big of matrix that can be processed by matlab?
0 个评论
采纳的回答
Chandra Kurniawan
2011-12-21
Just use [] for any column or row that you want to remove.
Eq :
A = round(10*rand(10));
B = A;
B(3, :) = []
4 个评论
Friedrich
2011-12-21
MATLAB has a maximum size of matrices. It is limited by the amount of elements in a matrix not by the dimension. The computer command gives you that limit:
[str,maxsize] = computer returns the integer maxsize, the maximum number of elements allowed in an array with this version of MATLAB
And of course the it depends on the memory and bitness of your system:
http://www.mathworks.com/support/tech-notes/1100/1107.html#1
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!