Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字配列をベクトルに変換する簡単な方法はありますか? たとえば、私はこれを持っています
my_array = <1*64 文字>
「1010101010…」でいっぱいです。
私はそれが欲しい:
my_vector = [1 0 1 0 1 0....]
コードを書かずにそれを可能にする機能はありますか? ありがとう
str='01001011'; [str2num(str(:))]' ans = 0 1 0 0 1 0 1 1
my_vector = double(my_array - '0');