how to delete all the elements from the matrix?
22 views (last 30 days)
Show older comments
i want to delete all the elements from the matrix, and make the matrix empty.
1 Comment
Walter Roberson
on 27 Mar 2014
What data type is the matrix? Should the empty matrix have the same data type?
Answers (3)
RAGHAVENDRA
on 27 Mar 2014
Edited: RAGHAVENDRA
on 27 Mar 2014
Are you trying to make the matrix as null matrix or want to replace the elements with zeros(erasing the values). In the former case just use A=[];
0 Comments
Jos (10584)
on 27 Mar 2014
Several options, depending on the desired result (same class, for instance):
A = []
A(:) = []
A = zeros(0,0,class(A))
0 Comments
See Also
Categories
Find more on Elementary Math in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!