This is normal, since the MATLAB installation has no built-in functions by default isdouble(), issingle()etc. If you want to test the / handle value class, use the built-in isa(), as in:
isa(1, 'double');
isa('abc', 'char');
user2271770
source
share