Hi,

I have the following array
data = [
 -0.5 
 0.0 
 -2.18199e-5
 1.53967e-5
 -1.7899e-5 
 1.26717e-5
 -2.24327e-6
 1.60087e-6]


When I save it using either 

writecsv("filename.csv",data)

or

writedlm("filename.csv",data,",")


I get this
-.5
0
-21819881018654233e-21
153966589305464e-19
-17898976869144106e-21
12671715235247999e-21
-22432716786997375e-22
16008706220269127e-22

Is there anyway for me to, instead, get the following:
-.5
0
-.000021819881018654233
.0000153966589305464
-.000017898976869144106
.000012671715235247999
-.0000022432716786997375
.0000016008706220269127

Thanks,
Ngan

Reply via email to