How do I split double-digit elements in a vector into two separate elements?
9 ビュー (過去 30 日間)
古いコメントを表示
I have a vector, v = [1 18 9 8], and I'm trying to split up the 18 into two separate elements so that the new vector would be new_vec = [1 1 8 9 8]. Any ideas on how to approach this?
0 件のコメント
回答 (2 件)
Andrei Bobrov
2016 年 11 月 28 日
編集済み: Andrei Bobrov
2016 年 11 月 28 日
v = [1 18 9 8];
new_vec = sprintf('%d',v)-'0';
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!