I'm writing a MatLab programm under windows 7 x64 that takes the clipboard, with mixed data copied from Microsoft Excel, and import it directly to MatLab into a single char array.
When I use str = clipboard('paste') in MatLab, all text data copied from excel are fine, but the numerical data copied loss some decimal places.
For example, if the cell A1 contains the number 2113.12389881239, but it only displays the value 2113.123899 due to cell formating, then 2113.123899 is copied from excel to MatLab instead of the real cell value 2113.12389881239.
I would like to know how to copy the exact cell value stored in Excel not the value displayed.
Thanks in advance.