Removing rows with empty values in table
Show older comments
Hello! I have the table attached ('egAllHitMov') which has missing values in the first 6393 rows showing as []. I tried the following line to remove them:
AllHitMov = rmmissing(AllHitMov);
But it does not work, and also does not give me an error. Do you know how I can create a new table without these lines?
Thank you!
Accepted Answer
More Answers (1)
George Papazafeiropoulos
on 26 Sep 2022
0 votes
AllHitMov(1:6393,:)=[];
Categories
Find more on Tables 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!