how to convert vector char to matrix char ?
조회 수: 30 (최근 30일)
이전 댓글 표시
I have a variable X = 'ABCDEFGHIJKLMNOPQRSTWXYZ'
how i can fill it in a matrix with single char in single index
like X(1,1)=A ,X(1,2)=B,X(1,3)=C and so on.
댓글 수: 1
Stephen23
2021년 9월 13일
Using a cell array for this is pointlessly complex and inefficient.
Using a character array, as Chunru shows, is simpler and more efficient.
채택된 답변
Chunru
2021년 9월 13일
You don't need to do anything. X is already an array.
X = 'ABCDEFGHIJKLMNOPQRSTWXYZ'
X(2)
X(1,2)
댓글 수: 5
Walter Roberson
2021년 9월 13일
Examine of copying characters into the matrix.
X = 'ABCDEFGHIJKLMNOPQRSTWXYZ'; %row vector
X(2, [2:end,1]) = X(1,:);
X
Walter Roberson
2021년 9월 13일
Note that a single-quoted character literal such as 'ABCD' is considered to be a vector of characters.
clear X
X = 'ABCD';
X
is the same as
clear X
X(1) = 'A'; X(2) = 'B'; X(3) = 'C'; X(4) = 'D';
X
This is not just a notation convenience: this is how MATLAB really implements it.
X = 'ABCD'
double(X)
The real implementation of X = 'ABCD' is X = uint16([65 66 67 68]) %16 bits per character code followed by marking X internally as being datatype character. It is a numeric vector that is marked to display as character.
... and row vectors are the same thing as 2D arrays in which there just happens to be only 1 row. There is no difference between making X a 2D array of characters that only happens to have one row, compared to making X a row vector of character.
This is different than C. In C, you could have a declaration such as
char X[1][5]
and in C that would be different than
char X[5]
but not in MATLAB. MATLAB just has the equivalent of
struct X {
uint64 ndims;
uint64 size*;
char class[64];
uint16 flags;
(void *)data;
}
where data is the pointer to a block of consecutive memory, with there being no individual pointers into rows or columns, with the elements of the array being stored one after the other, but and the array arrangement to be interpreted according to the size field. Rearranging a 1 x 26 array into a 26 x 1 array (through transpose) just involves rewriting the size* contents from [1 26] to [26 1]
추가 답변 (1개)
Awais Saeed
2021년 9월 13일
편집: Awais Saeed
2021년 9월 13일
How about using cell?
X = 'ABCDEFGHIJKLMNOPQRSTWXYZ';
v = cellstr(num2cell(X))
By now you use access cells as v{2}, v{4} etc.
v{2}
v{3}
To make a matrix out of it, you can reshape v as
rows = 4;
vr = reshape(v,rows,[])'
And to access elements from row, for example 2
vr{1,3}
댓글 수: 1
Chunru
2021년 9월 13일
char array is much more efficient than cell array.
X = char('A'+(0:23));
C = reshape(X, [4 6])'
V = cellstr(num2cell(X));
V = reshape(V, 4, [])'
whos % compare the storage space of C and V
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Identification에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!