Date: Dec 5, 2012 8:44 AM Author: Paul Subject: Simple but stunning xlswrite problem. I get an error when trying to write very basic arrays using xlswrite.
This works:
a = cell(5);
a(1:25) = 1;
xlswrite('test', a)
THIS does not work:
a = cell(5)
a(1:25) = 1;
a(1,5) ={'a'};
xlswrite('test',a);
I get the following error:
??? Error using ==> xlswrite at 180
An error occurred on data export in CSV format.
Error using ==> <a href="error:C:
Does anyone have any idea why this could be happening?