What is the difference between A={1 2} and A = { '1','2'} and how to convert one from other ?
54 views (last 30 days)
Show older comments
Geethanjali
on 16 Jun 2025 at 9:46
Edited: John D'Errico
on 17 Jun 2025 at 11:51
What is the difference between A={1 2} and A = { '1','2'} and how to convert one from other ?
1 Comment
Stephen23
on 17 Jun 2025 at 4:33
In addition to the comments below, it is also worth mentioning that unless you have a particular reason to store scalar numerics in a cell array, using a numeric array would be more efficient and likely make processing your data easier:
A = [1,2]
Accepted Answer
Epsilon
on 16 Jun 2025 at 10:14
Edited: Epsilon
on 16 Jun 2025 at 10:15
Hi Geethanjali,
A = {1 2} represents a 1x2 cell array with two double type numeric values, 1 and 2, while A = {'1', '2'} represents a 1x2 cell array with two char type charachter values '1' and '2'. To convert char to double, use the inbuilt function 'str2double', while the function 'num2str' can be used for the reverse conversion. Since MATLAB represents strings as arrays of characters, the above-mentioned functions have the term 'str'.
%To convert the cell arrays
A = {'1', '2'};
A = cellfun(@str2double, A, 'UniformOutput', false);
disp(A)
B = {1 2};
B = cellfun(@num2str, B, 'UniformOutput', false);
disp(B)
%Converting only one element
A='1'
A=str2double(A)
B=1
B=num2str(B)
3 Comments
Stephen23
on 16 Jun 2025 at 11:20
"Since MATLAB represents strings as arrays of characters..."
or as string arrays:
More Answers (1)
John D'Errico
on 16 Jun 2025 at 20:51
Edited: John D'Errico
on 17 Jun 2025 at 11:51
Think of it like this:
1 is a "number" as stored in MATLAB, as is 2.
X = [1 2]
whos X
X is stored in double precision. We can add them, subtract them, etc.
But in character form, they are more like pictures of numbers. Text representations thereof. You cannot add them and get an expected result. You cannot do arithmetic on them, and have it do anything that will make sense.
Y = '1'
whos Y
You can convert them to numbers, using as has been shown, str2double. But the two forms are stored completely differently.
In the end, both 1 and '1' are representations of the number we fondly think of as "one". What can matter is how it is stored, and how that representation can then be used. Is either truly the number 1? That is a rather philosophical question, about something that is best described as a mathematical concept used as a measure.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!