Question

I need to create a big .csv file with say 200,000+ rows and 7 cols. This fails:

a = randn(200000,7) ; xlswrite('hugedata.csv', a) ;

??? Error using ==> xlswrite at 211 Excel returned: Error: Object returned error code: 0x800A03EC.

a = randn(4,3) ; xlswrite('hugedata.csv', a) ; % works perfectly fine.

Comments? Please suggest an alternative code if available. Thanks.

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top