How to display long numbers without scientific notation in Matlab?
format long g
doesn't help
>> A=single([1456267123000 16.5])
A =
1×2 single row vector
1.456267e+12 16.5
>> format long g
>> A
A =
1×2 single row vector
1.456267e+12 16.5
I would expect the output like this
1456267123000 16.5