What is the difference between A={1 2} and A = { '1','2'} and how to convert one from other ?
11 views (last 30 days)
Show older comments
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
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
Edited: Epsilon
on 16 Jun 2025
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
"Since MATLAB represents strings as arrays of characters..."
or as string arrays:
More Answers (1)
John D'Errico
on 16 Jun 2025
Edited: John D'Errico
on 17 Jun 2025
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
Categories
Find more on Data Type Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!