removing specific rows from char array
10 次查看(过去 30 天)
显示 更早的评论
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
How I can remove the 1st and 5th columns from data aray?
1 个评论
the cyclist
2021-8-27
data is a 10x2 character array, so it does not have a 5th column. I assume you meant row. See my solution.
采纳的回答
the cyclist
2021-8-27
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
data([1 5],:) = []
2 个评论
the cyclist
2021-8-27
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
remove = [1 5];
data(remove,:) = []
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!