epix-users
[Top][All Lists]
Advanced

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

Re: [ePiX-users] File ploting


From: Andrew D. Hwang
Subject: Re: [ePiX-users] File ploting
Date: Thu, 25 Sep 2008 12:10:56 -0400 (EDT)

On Thu, 25 Sep 2008, Cristóvão Sousa wrote:

> To demonstrate my problem I did a simple test case.
> I have ePiX 1.2.5 (compiled by me) in a 64 bits Kubuntu distro.
>

Hi Cristóvão,

When you create a data_file to read in data, you must specify either the
number of columns *or* the disk file's name in the constructor. :)

That is, instead of:

>   data_file din;
>   din.delimiter(" ");
>   din.read("df1.data");
>

do either:

data_file din(3);
din.delimiter(" ");
din.read("df1.data");

*or*

data_file din("df1.data");

Best,
Andy

Andrew D. Hwang                 address@hidden
Department of Math and CS       http://mathcs.holycross.edu/~ahwang
College of the Holy Cross       (508) 793-2458 (Office: Swords 339)
Worcester, MA, 01610-2395       (508) 793-3530 (fax)

reply via email to

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