help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: reading a csv file without outputting data


From: David Grundberg
Subject: Re: reading a csv file without outputting data
Date: Tue, 23 Mar 2010 09:58:28 +0100
User-agent: Thunderbird 2.0.0.23 (X11/20090812)

Conoscenza Silente wrote:
Hi all
I need to use octave to read a very big csv file of data.
What I notice is that using csvread function each time prints out the output matrix to screen.
Do you know if it does exist a way to avoid/suppress this output
and get just the data in my matrix?
Regards
CSV

You're probably calling cvsread like

A = cvsread (...)

and if you append a semicolon you suppress the output, like this:

A = cvsread (...);

hth,
David


reply via email to

[Prev in Thread] Current Thread [Next in Thread]