similar to: Stale NFS file handle error when you try and browse a Windows mounted folder

Displaying 20 results from an estimated 600 matches similar to: "Stale NFS file handle error when you try and browse a Windows mounted folder"

2004 Aug 04
1
R Matrix package solve
hello. I have a query about the Matrix package for R. I wrote some code a while ago using the Matrix package version 1.6.2 with an early version of R, to do some linear least squares for regression: xn [,1] [,2] [,3] [,4] [1,] 1 0.7429352 0.5519528 0.4100652 [2,] 1 0.7443713 0.5540886 0.4124477 [3,] 1 0.7447385 0.5546355 0.4130584 [4,] 1 0.7459597 0.5564558
2009 May 18
2
Overdispersion using repeated measures lmer
Dear All I am trying to do a repeated measures analysis using lmer and have a number of issues. I have non-orthogonal, unbalanced data. Count data was obtained over 10 months for three treatments, which were arranged into 6 blocks. Treatment is not nested in Block but crossed, as I originally designed an orthogonal, balanced experiment but subsequently lost a treatment from 2 blocks. My
1997 May 09
0
R-alpha: plot, axis & log
The following commands crash: > plot(1:4,axes=F,log="x") > axis(1,c(1,2,3,4)) zsh: segmentation fault R Lines 35-37 of axis(): 35: else { 36: ind <- (usr[1] <= at & at <= usr[2]) 37: } should be replaced by else { if (log) ind <- (10^usr[1] <= at & at <= 10^usr[2])
1997 Jul 25
0
R-alpha: Treatment of seed
There is a difference between R and S (or S-Plus, I'm not sure about that) concerning the generation of random numbers. If an error occurs during the execution of a function, the seed is restored to its old value in S-Plus, but not in R. This feature of S-Plus has just turned out to be very useful for me because I got an error message during a small simulation for a certain choice of
2002 Aug 07
0
RE: printed copies of "An Introduction to R"
Brian, Thanks for doing this. As the primary author, could I have a desk copy, please? Bill Venables. Bill Venables, CMIS, CSIRO Marine Laboratories, PO Box 120, Cleveland, Qld. 4163 AUSTRALIA Phone: +61 7 3826 7251 Fax: +61 7 3826 7304 Mobile: +61 419 634 642 <mailto: Bill.Venables at csiro.au> http://www.cmis.csiro.au/bill.venables/ -----Original Message----- From: Brian
2009 Oct 19
1
lmer family=binomal p-values
Hi, If any one has time I need some help understanding the P-values given in the lmer output. Using AIC for model selection I find my minimal model is FOLLOW~MOVERSTATUS+DISTANCE however it appears DISTANCE is not significant at 95% confidence, see output quoted below. However, removing DISTANCE gives a higher AIC=433.5, therefore I will keep it in, but am confused as to what is adds to the
2010 Feb 11
1
Compile/Build Speex on iPhone
The off dependencies are only for speexenc and speexdec, as far as I recall. If you omit those targets, you shouldn't have the ogg dependency issues. On Feb 10, 2010, at 22:21, Jean-Marc Valin <jean-marc.valin at usherbrooke.ca > wrote: > Unless you want to work on files (rather than RTP), you don't need any > of the stuff that uses ogg.h > > Jean-Marc > >
2010 Feb 11
2
Compile/Build Speex on iPhone
Hello, I am completely new to Speex and make files but I'm looking to build/ run Speex on the iPhone for decoding and potentially encoding. I've read that you can just copy the source into an XCode project which I tried but I started getting all kinds of compile errors. (1000+) There were things like missing references to ogg header files and so forth. Could someone explain
2011 Jul 12
0
Speex newbie: win32 encoder and Java applet playback?
On Tue, Jul 12, 2011 at 10:10, Clifton Craig <clifton.craig at gmail.com> wrote: > Hi Fernando, > > You can use the examples included in the Speex source download to perform encoding from the command line. There is also a JSpeex Jar file that you may be interested in which is an all Java solution that will encode/decode for you. I have successfully implemented the Java encoding
2010 May 06
1
Encoding a wave file with a bad header
If I use Speex, JSpeex actually, to compress an otherwise valid wave file with zero lengths in the header would it impact the compression at all? Here's what I'm doing during compression in Java: AudioFormat wavFormat = ais.getFormat(); AudioFormat speexFormat = new AudioFormat(SpeexEncoding.SPEEX_Q5, wavFormat.getSampleRate(),
2010 May 03
1
Help decompressing Speex audio
I have an audio file compressed by JSpeex that I'm trying to decompress on the iPhone. I've been trying to work from the speexdec example in an attempt to port the core logic to ObjC. I have a class that does the decode and passes the result back to another class. (currently the other class is a unit test.) My other class is writing the converted output to disk. I compare the results of my
2010 Apr 29
4
Simple example of decoding streaming audio realtime?
Hi, I'm new to Speex and a little uncomfortable in C programming. I'm looking for a simple example of how I'd use Speex to decode a speex file read off of an network stream and pass the decoded samples to an audio player. I have speex running in an iPhone project and I started digging thru the speexdec.c example trying to refactor as I made sense of the API calls. The example is a
2010 Apr 30
2
Simple example of decoding streaming audio realtime?
Conrad, That's exactly what I was looking for. I just got finish trying several attempts at porting libfishsound to XCode/CocoaTouch land but am facing dependency issues on the other xiph libraries. (liboggz, libvorbis, libflac, etc.) Rest assured I know what the issues are and how to address them. I am at a fork here. I can either port the bulk of the xiph libraries to XCode or continue on
2005 Jul 20
0
freebsd-security Digest, Vol 120, Issue 1
On Wed, Jul 20, 2005 at 12:00:36PM +0000, freebsd-security-request@freebsd.org wrote: > From: Joachim Str?mbergson <watchman@ludd.ltu.se> > Subject: Adding OpenBSD sudo to the FreeBSD base system? > To: freebsd-security@freebsd.org > Message-ID: <42DCC503.5000408@ludd.ltu.se> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Aloha! > >
2005 Sep 18
1
TFTP and DHCP...
Hi all, I have bought an Aastra 480i phone. In order to configure the phone for using a TFTP server, I had to enter the TFTP ip address directly in the phone, and then reboot the phone again. Is it possible to configure a DHCP server so it sends a TFTP server coordinate for the phone to use? Best regards, Francois Random Thought: --------------- A bottle of wine begs to be shared; I have
2010 Mar 20
0
Decode file written from JSpeex using C/C++ API?
I'm new to Speex and I'm trying to compress audio using JSpeex in a servlet then play it back on the iPhone. I've managed to get Speex to compile on the iPhone by copying the speex and libspeex folders into XCode. I've read the sample code and the PDF documentation and I have a rough idea how to decode a raw stream. (I'm assuming the sampledec source works with raw speex audio
2010 Apr 30
0
Simple example of decoding streaming audio realtime?
Clifton Craig <clifton.craig at gmail.com> writes: > Hi, > > I'm new to Speex and a little uncomfortable in C programming. I'm > looking for a simple example of how I'd use Speex to decode a speex > file read off of an network stream and pass the decoded samples to an > audio player. I have speex running in an iPhone project and I started > digging thru the
2010 Apr 30
2
Simple example of decoding streaming audio realtime?
I'm a software engineer. I'm terribly uncomfortable with C. I want someone to show me a simplified use of Speex decoding. FWIW I'm finally getting my head around the API but the example had me a little lost with its cryptic variable names and monolithic nature. The example I'm asking for is way simpler than the final code I will ship to production so in essence, I'm looking for
2010 Apr 30
0
Simple example of decoding streaming audio realtime?
On 30 April 2010 05:45, Clifton Craig <clifton.craig at gmail.com> wrote: > Hi, > > I'm new to Speex and a little uncomfortable in C programming. I'm looking for a simple example of how I'd use Speex to decode a speex file read off of an network stream and pass the decoded samples to an audio player. I have speex running in an iPhone project and I started digging thru
2010 Jun 26
0
Down Convertion from 32Khz to 16Khz
I've done something similar in Groovy/Java using Wave files. In my case I was downsampling from 16bit to 8bit. Here's the core of my conversion logic. def convertData(def inputStream, def outputStream) { boolean otherByte = false inputStream.eachByte { if(otherByte) { //invert high order byte int inverted = ((int)it) ^ 0x00000080 byte[]