Creating a new string matrix
이전 댓글 표시
Can ['abc';'ef';'xyz'] be used to create a new string matrix
댓글 수: 1
The matrix ['abc';'ef';'xyz'] cannot exist in Matlab to begin with.
>> ['abc';'ef';'xyz']
Dimensions of arrays being concatenated are not consistent.
채택된 답변
추가 답변 (1개)
Bruno Luong
2018년 10월 15일
편집: Bruno Luong
2018년 10월 15일
I will pad appropriate number of ascii-0 characters to the tail of the shorter strings to make them a matrix.
>> char({'abc';'ef';'xyz'})
ans =
3×3 char array
'abc'
'ef '
'xyz'
>>
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!