Scilab Home Page | Wiki | Bug Tracker | Forge | Mailing List Archives | Scilab Online Help | File Exchange
ATOMS : csv_readwrite details
Login with GitLab

csv_readwrite

fast dedicated scilab functions to read and write csv files
(2810 downloads for this version - 31478 downloads for all versions)
Details
Version
0.1
A more recent valid version with binaries for Scilab 5.3 exists: 0.5
Author
allan.cornet@scilab.org
Owner Organization
Scilab - DIGITEO
Maintainer
Allan CORNET
Category
License
Creation Date
July 14, 2010
Source created on
Scilab 5.3.x
Binaries available on
Scilab 5.3.x:
Linux 32-bit Windows 32-bit Windows 64-bit macOS Linux 64-bit
Install command
--> atomsInstall("csv_readwrite")
Description
            fast dedicated scilab functions to read and write csv files

To compare speed:

with default scilab functions:
stacksize('max');
M = ones(1000, 1000);

timer();
write_csv(M, TMPDIR + "/csv_write_1.csv");
timer()

timer();
r = read_csv(TMPDIR + "/csv_write_1.csv")
timer()


with optimized functions:

stacksize('max');
M = ones(1000, 1000);

timer();
csv_write(M, TMPDIR + "/csv_write_1.csv");
timer()
            
Files (6)
[26.95 kB]
Source code archive
csv_readwrite sources
[30.31 kB]
Linux 32-bit binary for Scilab 5.3.x
Linux 32-bit
Automatically generated by the ATOMS compilation chain

[230.34 kB]
Windows 32-bit binary for Scilab 5.3.x
Windows 32-bit
Automatically generated by the ATOMS compilation chain

[233.76 kB]
Windows 64-bit binary for Scilab 5.3.x
Windows 64-bit
Automatically generated by the ATOMS compilation chain

[27.85 kB]
macOS binary for Scilab 5.3.x
MacOSX version
Automatically generated by the ATOMS compilation chain

[31.64 kB]
Linux 64-bit binary for Scilab 5.3.x
Linux 64-bit
Automatically generated by the ATOMS compilation chain

News (0)
Comments (0)
Leave a comment
You must register and log in before leaving a comment.
Login with GitLab
Email notifications
Send me email when this toolbox has changes, new files or a new release.
You must register and log in before setting up notifications.