search for: readdata

Displaying 12 results from an estimated 12 matches for "readdata".

Did you mean: read_data
2008 May 20
4
Can't get past the splash screen
Hi, I have a remote frontend (it's kept in the room which I don't have access) which is installed with CentOS 4 and Rocks . So, to use the desktop(Gnome) of the frontend I use the freenx + nomachine following the guide in http://www.centos.org/modules/newbb/viewtopic.php?forum=20&topic_id=1640&viewmode=threaded. It worked. Then, I intended to add user, but I couldn't create the
2012 May 07
3
Problem in executing R-script
Hello. I'm a newbie here. In my script (I name it readData.R), I wrote the followings: readData <-function(){ med = read.csv("medicalData.csv");} Then I tested the script by 'Source R Code' then on the command I typed 'readData()' then I typed 'med' to check if the variable contains the medical data but it returned '...
2012 Aug 14
12
[TESTDAY] xl cpupool-create segfaults if given invalid configuration
...IDENT, expecting NEWLINE or '';'' Failed to parse config file: Invalid argument *** glibc detected *** xl: free(): invalid pointer: 0x0000000001a79a10 *** Segmentation fault (core dumped) Looking at the code in xl_cmdimpl.c:main_cpupoolcreate() it calls: * xlu_cfg_init() * xlu_cfg_readdata() if the readdata() fails, it calls xlu_cfg_destroy() before returning. Other callers to readdata() seem to call exit(1) if readdata() fails. So is readdata() leavnig the config in an inconsistent state? Or is config already cleaned up? -George
2001 Jun 01
1
Read to the end of a stream (package Rstreams)
Hi there, I want to read all data from a binary file (with package Rstreams). I tried the following function (small piece of code): readdata <- function (file) { # open file s <- openstream(file, "read") # read int values while (s$position <= s$size) { readint(s, 1, 2) -> type [...] } return() } and got the following error: > Error in while (s$position <= s$size) { : missing...
2014 Feb 02
1
Trouble implementing ov_callbacks, endless loop calling seek_func
...ions and see if they can spot what I'm doing wrong, it'd be much appreciated: size_t SourceFileImplOggVorbis::readFn( void *ptr, size_t size, size_t nmemb, void *datasource ) { auto sourceFile = (SourceFileImplOggVorbis *)datasource; size_t bytes = size * nmemb; sourceFile->mStream->readData( ptr, bytes ); return nmemb; } int SourceFileImplOggVorbis::seekFn( void *datasource, ogg_int64_t offset, int whence ) { auto sourceFile = (SourceFileImplOggVorbis *)datasource; switch( whence ) { case SEEK_SET: sourceFile->mStream->seekAbsolute( (off_t)offset ); break; case SEEK_CUR: sour...
2007 Feb 22
13
5.1 surround channel coupling
>Yesterday I have finished writing the ambisonic pan filter for oggenc. May I ask what this "pan filter" is? I made some tentative suggestions for coupling Ambisonic B-format in a post "Vorbis Ambisonic coupling" on 4feb07 I gather from the last monthly meeting, that some of you, including Monty, had problems with the phase behaviour of B-format. Would anyone like a
2014 Feb 02
0
unsubscribe
...39;m doing wrong, it'd be much appreciated: > > size_t SourceFileImplOggVorbis::readFn( void *ptr, size_t size, size_t nmemb, void *datasource ) > { > auto sourceFile = (SourceFileImplOggVorbis *)datasource; > > size_t bytes = size * nmemb; > sourceFile->mStream->readData( ptr, bytes ); > > return nmemb; > } > > int SourceFileImplOggVorbis::seekFn( void *datasource, ogg_int64_t offset, int whence ) > { > auto sourceFile = (SourceFileImplOggVorbis *)datasource; > > switch( whence ) { > case SEEK_SET: > sourceFile->mStrea...
2007 Feb 28
2
sort of OT: bootstrap tutorial
There is now a tutorial on bootstrapping and other resampling methods at: http://www.burns-stat.com/pages/Tutor/bootstrap_resampling.html Corrections and other suggestions are welcome. The project started because a novice asked me about bootstrapping. My response was, "How dare you bug me while I'm playing with my cats, just google for it." My correspondent was not very impressed
2003 Aug 30
1
Fink's vorbis-tools patch
...tf(stderr, _("Warning: Can't handle compressed AIFF-C\n")); @@ -301,7 +307,7 @@ aiff->channels = format.channels; aiff->samplesize = format.samplesize; aiff->totalsamples = format.totalframes; - aiff->bigendian = 1; + aiff->bigendian = bigendian; opt->readdata = (void *)aiff; diff -urN vorbis-tools-1.0.orig/acinclude.m4 vorbis-tools-1.0/acinclude.m4 --- vorbis-tools-1.0.orig/acinclude.m4 Fri Jul 12 18:24:54 2002 +++ vorbis-tools-1.0/acinclude.m4 Mon Jan 20 19:44:11 2003 @@ -425,36 +425,20 @@ if test "x$curl_prefix" != "xno" ; the...
2006 Sep 11
4
encode, decode and encode again
(I've already posted this message month ago, but nobody answered, may be it was not delivered to newsgroup?) Hello, All. I wrote an encoder-decoder based on example from OGG-Vorbis SDK. This encoder can encode a large amount of small WAV-files with equal parameters into one sound archive. Then I decode this sound archive back into large amount of small WAV-files. Theese files are
2003 Feb 28
2
error in tor2
...:/usr/src/zaptel # cd .. ivr2:/usr/src # cd zapata ivr2:/usr/src/zapata # make clean; make install rm -f *.o rm -f libzap.a mkcoef p_tmp_ libzap.so* make -C mkfilter clean make[1]: Entering directory `/usr/src/zapata/mkfilter' rm -f mkfilter.o mkshape.o mkaverage.o gencode.o genplot.o complex.o readdata.o rm -f mkfilter mkshape mkaverage gencode genplot make[1]: Leaving directory `/usr/src/zapata/mkfilter' gcc -Wall -Wstrict-prototypes -march=pentium -O6 -g -c -o zap.o zap.c gcc -Wall -Wstrict-prototypes -march=pentium -O6 -g -c -o goertzel.o goertzel.c gcc -Wall -Wstrict-prototypes -march...
2015 Oct 08
2
[PATCH 0/1] opusenc support for WavPack input
This patch to opus-tools adds optional support to WavPack lossless format as input to opusenc. Like support to FLAC, it depends on an external library, libwavpack, and may be disabled on configure. Lucas Clemente Vella (1): Reading input from WavPack files. Makefile.am | 7 +- configure.ac | 37 ++++++++ src/audio-in.c | 71 ++++++++------- src/opusenc.c | 19 +++- src/opusenc.h