export to csv without scientific notation

hi i have an array that contains couple hundred 6 digit integers..
when i do csvexport it is shown in scientific notation e.g. 973961 is shown as 9.7396e+05 then i am unable to get an idea from csv file what the actual value was before conversion.
any help ?

댓글 수: 1

Star Strider
Star Strider 2016년 6월 20일
I cannot find csvexport in the MATLAB Online Documentation. If it’s a File Exchange contribution, contact the author.

댓글을 달려면 로그인하십시오.

답변 (1개)

dpb
dpb 2016년 6월 20일
편집: dpb 2016년 6월 20일

0 개 추천

As Star says, "not a Matlab question" but if is a FEX submission it probably suffers from similar limitation as does csvwrite which includes
>> help csvwrite
...
* csvwrite writes a maximum of five significant digits. For greater
precision, call DLMWRITE with a precision argument.
You should, of course, check the help info for the function to see what additional parameters may be accepted from its default just as dlmwrite but it would seem the logical solution would be dlmwrite with the alternative of a specific format to get a specific output form.

카테고리

질문:

2016년 6월 20일

편집:

dpb
2016년 6월 20일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by