how to delete some unwanted data from a large nomber of data?
1 view (last 30 days)
Show older comments
I have a large number of data. some unwanted data are also present. How to delete those column containing the unwanted data?
0 Comments
Accepted Answer
Azzi Abdelmalek
on 23 Oct 2013
A=rand(10)
%If you want to delete column [1 3 5]
A(:,[1 3 5])=[]
5 Comments
More Answers (0)
See Also
Categories
Find more on Whos 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!