how to convert vector char to matrix char ?
34 views (last 30 days)
Show older comments
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 Comment
Stephen23
on 13 Sep 2021
Using a cell array for this is pointlessly complex and inefficient.
Using a character array, as Chunru shows, is simpler and more efficient.
Accepted Answer
Chunru
on 13 Sep 2021
You don't need to do anything. X is already an array.
X = 'ABCDEFGHIJKLMNOPQRSTWXYZ'
X(2)
X(1,2)
5 Comments
Walter Roberson
on 13 Sep 2021
Examine of copying characters into the matrix.
X = 'ABCDEFGHIJKLMNOPQRSTWXYZ'; %row vector
X(2, [2:end,1]) = X(1,:);
X
Walter Roberson
on 13 Sep 2021
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]
More Answers (1)
Awais Saeed
on 13 Sep 2021
Edited: Awais Saeed
on 13 Sep 2021
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 Comment
Chunru
on 13 Sep 2021
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
See Also
Categories
Find more on Data Type Identification in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!