how to remove a column from a character matrix?
1 回表示 (過去 30 日間)
古いコメントを表示
suppose
x= 1001
1001 (x is a character matrix)
i want y=100
100 (last column is removed)
0 件のコメント
採用された回答
KSSV
2016 年 12 月 6 日
x= '1001 1001' ;
idx = strfind(x,' ') ; % get space position
x(idx-1) = [] ;
x(end) = []
3 件のコメント
その他の回答 (1 件)
Guillaume
2016 年 12 月 6 日
You remove the last column of any matrix, regardless of what type of data it contains, even characters, the same way with:
yourmatrix(:, end) = [];
Unless what you call a character matrix is not a character matrix actually. A character matrix would be:
x = ['1001';'0110']; %for example
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!