how to convert a cell array to a string array
199 ビュー (過去 30 日間)
古いコメントを表示
I have a cell array of 2048*1,each cell countains a string element, and i want to convert it into a string array (so that i could make it one hot coded)
how cloud i slove it?
2 件のコメント
Stephen23
2022 年 1 月 10 日
編集済み: Stephen23
2022 年 1 月 10 日
"I have a cell array of 2048*1,each cell countains a string element..."
Highly unusual and not recommended: "Avoid using cell arrays of strings. When you use cell arrays, you give up the performance advantages that come from using string arrays."
The best solution is to avoid creating this cell array in the first place, and instead store the data in a string array (or as a cell array of character vectors) right from the start. How was this cell array created?
Kelvin Prosyk
2023 年 5 月 13 日
The OP is valid. There could be situations where it is unavoidable. For example, reading in mixed data from an Excel spreadsheet using the readcell function.
回答 (1 件)
Yusuf Suer Erdem
2022 年 1 月 10 日
S = {'Hello',' ','world',' ','i',' ','am',' ','here'}
ss = [S{:}]
4 件のコメント
Kelvin Prosyk
2023 年 5 月 13 日
編集済み: Kelvin Prosyk
2023 年 5 月 13 日
Any valid answer to this question? OP wanted to convert to an array of strings, not a single vector of char. I have a similar problem.
Walter Roberson
2023 年 5 月 13 日
S = {"Hello"," ","world"," ","i"," ","am"," ","here"}.'
SA = reshape([S{:}], size(S))
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!