I have a popupmenu
using the uicontrol
class within matlab. However, the numbers that are greater than 1 million are expressed in scientific notation:
This is generated using the following code:
sPropGrid = uiextras.Grid('Parent', staticPropPanel);
...
self.nSamplesEdit = uicontrol('Style', 'popupmenu', 'Parent', sPropGrid, ...
'String', {[256 16384 32768 65536 131072 262144 524288 1048576 2097152 16252928]});
I would like to stop this, and display the entire number in normal formatting. How do I do this?