help-octave
[Top][All Lists]
Advanced

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

Re: Octave Limits


From: Dmitri A. Sergatskov
Subject: Re: Octave Limits
Date: Fri, 21 Nov 2003 14:59:30 -0700
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 Netscape/7.1

Just FYI.

The program:

#include <stdio.h>
#include <stdlib.h>

main()
{
        FILE *fh;
        fh = fopen("xaa","r");
        if (NULL == fh) {
                printf("Error reading file\n");
        }
        return 0;
}


Will return error if 'xaa' is bigger then 2Gb. There are some tricks to read
bigger files. E.g.:


 http://www.ece.utexas.edu/~luo/linux_lfs.html

Sincerely,

Dmitri.



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

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