필터 지우기
필터 지우기

how to conver a text to a matlab matrix or vector (every symbol in text fill one cell)

조회 수: 2 (최근 30일)
p.e i have this in text: himynameis george and i want this: [h,i,m,y,n,a,m,e,i,s, ,g,e,o,r,g,e]
or the askii bits of every symbol in every cell
thenks

채택된 답변

Image Analyst
Image Analyst 2013년 1월 7일
Why do you want the complexity of a cell array when you have only one character per cell and a character array would work just fine?
characterArray = 'himynameis george'
asciiArray = int32(characterArray)

추가 답변 (1개)

Walter Roberson
Walter Roberson 2013년 1월 7일
num2cell('himynameis george')

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by