MATLAB: Does str2num truncate the number so early

str2num; precision; matlab;

When I try to convert from string to number, I lose precision?
whos test_str
Name Size Bytes Class Attributes
test_str 1x9 18 char
K>> test_str
test_str =
0.067354
K>> str2num(test_str)
ans =
0.0674

Best Answer

format long
str2num(test_str)