Inconsisent(?) behaviour of str2num() with a particular usage
3 views (last 30 days)
Show older comments
The task in hand for me was to generate an empty array corresponding to the class/datatype of the input.
%Example 1
input = 'string';
output = char.empty
%Example 2
input = single(rand);
output = single.empty
My approach to this was to obtain the class of the input and use it with str2num -
input1 = "MATLAB";
str1 = sprintf('%s.empty', class(input1));
out1 = str2num(str1)
class(out1)
As you can see above, that the output is an empty array of double class and not of string class (as expected by me). This also occurs with char data-type
input2 = 'Batman'
str2 = sprintf('%s.empty', class(input2));
out2 = str2num(str2)
class(out2)
I have checked for these datatypes - single, double, all integer classes, figure, datetime, duration, calendarDuration, timeseries, string and char. It works for all the datatyes except for the last two.
I expected the code to work for all classes.
My questions are - Did I expect wrongly?
If not, why does this give incorrect (edit - different) output for 2 data types?
4 Comments
Accepted Answer
VBBV
on 21 May 2023
Edited: VBBV
on 21 May 2023
The function str2num can be used to convert the strings that inherently contain numbers to double class.
In your case there are no numbers in the outputs from sprintf function. Therefore, it results in empty [] which belongs to double class by default.
The reason why it worked for other data types is that they all belong to or contain numbers except for char & string
Hope this clarifies
6 Comments
More Answers (1)
Steven Lord
on 22 May 2023
If you want to evaluate the Static empty method of your class, don't use eval or str2num. Use feval or str2func.
classname = "string";
result = feval(classname + ".empty", 2, 0)
f = str2func(classname + ".empty");
result = f(0, 5)
See Also
Categories
Find more on Characters and Strings 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!