search for: fpe

Displaying 20 results from an estimated 45 matches for "fpe".

Did you mean: fe
2012 Mar 30
1
Akaike's Final Prediction Error (FPE)
Hello, first of all I have found lots of different versions of the FPE which have given me different results. I was wondering if there was an explicit command in R to compute the FPE of a model. Thank you in advance, Jonny -- View this message in context: http://r.789695.n4.nabble.com/Akaike-s-Final-Prediction-Error-FPE-tp4519011p4519011.html Sent from the R help m...
2017 Nov 21
2
help
I am working on Johansen cointegration test, using urca and var package. in the selection of var, I have got following results. >VARselect(newd, lag.max = 10,type = "none") $selection AIC(n) HQ(n) SC(n) FPE(n) 6 6 6 5 $criteria 1 2 3 4 5 6 7 8 9 AIC(n) -3.818646e+01 -3.864064e+01 -3.833435e+01 -4.089169e+01 NaN -Inf -Inf -Inf -Inf HQ(n) -3.754345e+01 -3.744647e+01 -3.658903e+01 -3.859523e+01 NaN -Inf -Inf -Inf...
2005 Oct 18
0
FPC / FPE fix
Mr Sidebotham I wanted to thank you for posting your fix of the camera recognition problem for FPC. I just updated to Tiger (I usually wait 6 months after new introductions) and was shocked at the discovery of the non-recognition and crash. I am currently working your fix. Even if it dose not work for me, I want to thank you for posting such a useful message. -- William H. Rosenblatt, MD
2017 Nov 21
2
help
...rote: > >I am working on Johansen cointegration test, using urca and var > >package. > >in the selection of var, I have got following results. > > > >>VARselect(newd, lag.max = 10,type = "none") > > > >$selection > >AIC(n) HQ(n) SC(n) FPE(n) > > 6 6 6 5 > > > >$criteria > > 1 2 3 4 > > 5 6 7 8 9 > >AIC(n) -3.818646e+01 -3.864064e+01 -3.833435e+01 -4.089169e+01 > > NaN -Inf -Inf -Inf -Inf > >HQ(n) -3.7...
2017 Nov 21
0
help
...av neog <yadavneog at gmail.com> wrote: >I am working on Johansen cointegration test, using urca and var >package. >in the selection of var, I have got following results. > >>VARselect(newd, lag.max = 10,type = "none") > >$selection >AIC(n) HQ(n) SC(n) FPE(n) > 6 6 6 5 > >$criteria > 1 2 3 4 > 5 6 7 8 9 >AIC(n) -3.818646e+01 -3.864064e+01 -3.833435e+01 -4.089169e+01 > NaN -Inf -Inf -Inf -Inf >HQ(n) -3.754345e+01 -3.744647e+01 -3.658903e+01 -3...
2012 Oct 22
0
"Vars" package: impulse response function
...ease of sp variable what should I do with these results? Thanks a lot, Marion > #make a data frame > vardat3<-data.frame(gdp,unemp,sp) > #select the number of lags: const > infocrit<-VARselect(vardat3,lag.max=20,type="const") > infocrit $selection AIC(n) HQ(n) SC(n) FPE(n) 20 2 1 2 $criteria 1 2 3 4 AIC(n) -1.862833e+01 -1.880996e+01 -1.868877e+01 -1.863180e+01 HQ(n) -1.849392e+01 -1.857475e+01 -1.835275e+01 -1.819497e+01 SC(n) -1.829502e+01 -1.822667e+01 -1.785550e+01 -1.754855e+01 FPE(n) 8.126326e-09 6.781829e-09 7.669554e-09 8.146337e-09 5 6 7 8 AIC(n) -1.8537...
2009 Apr 19
2
X won't start
...000000c 0x00030065 0x00000000 (0x0000a400) (**) RADEON(0): Wrote: rd=12, fd=101, pd=3 (**) RADEON(0): Disposing accel... (**) RADEON(0): Disposing cusor info (**) RADEON(0): Disposing DGA (**) RADEON(0): Unmapping memory (**) RADEON(0): RADEONDRICloseScreen FreeFontPath: FPE "unix/:7100" refcount is 2, should be 1; fixing. If it matters I normally boot into run level 3, log in and issue "startx" from the BASH prompt. Any ideas welcome.
2019 Jun 15
3
Constrained integer DIV (WAS: Re: Planned change to IR semantics: constant expressions never have undefined behavior)
...ined behavior. > > We have a few dusty deck codes in-house that depend on this, so I'm > motivated to push our local changes upstream. That said, if no one else > finds value in this, we can keep it local. Do you really need a special way to represent this in IR? If you need a SIGFPE, the frontend can generate the equivalent of "if (x==0) raise(SIGFPE);", which is well-defined across all targets. If you really need a "real" trap, I guess we could expose the x86 idiv as an intrinsic. -Eli
2005 Mar 21
1
How to do knn regression
How can I do a simple k nearest neighbor regression in R? My training data have 1 predictor and 1 outcome, both are numeric. I also need to use FPE and SC to find the optimal model. I know there is knn() in class package, but it's for knn classification. I also find a kknn package. What function should I use? Thanks in advance! Menghui
2007 Apr 02
1
possible division by zero in screen.c
...example of this situation would be the DynamicTwinView option in the nVidia proprietary drivers[0] (note that this is the default option in TwinView configurations). Apparently, it can happen in other situations as well. A simple patch that falls back to the manually-set refresh rate when a SIGFPE is imminent is attached, but I don't think it's really the best way to deal with this situation. In particular, where the index doesn't = 0, there'll be no crash but the refresh rate will be stupidly slow. A better solution might be to fall back to the manual setting where a stu...
2001 Oct 29
0
signal messages
...nt sig) { received_signal = sig; - quit_pending = 1; + if (send_signal == 1) + send_signal = 2; + else + quit_pending = 1; } /* @@ -765,6 +770,26 @@ leave_raw_mode(); } +static char * +sig2name(int sig) +{ +#define SIG(x) if (sig == SIG ## x) return #x + SIG(ABRT); + SIG(ALRM); + SIG(FPE); + SIG(HUP); + SIG(ILL); + SIG(INT); + SIG(KILL); + SIG(PIPE); + SIG(QUIT); + SIG(SEGV); + SIG(TERM); + SIG(USR1); + SIG(USR2); + return ""; +} + /* * Implements the interactive session with the server. This is called after * the user has been authenticated, and a command has been...
2004 Mar 26
1
nmbd dying
...ctl(9, FIONREAD, [26]) = 0 recvfrom(9, "\t\5\205\203\0\1\0\0\0\0\0\0\10BARBARA3\0\0\1\0\1", 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("127.0.0.1")}, [16]) = 26 close(9) = 0 rt_sigprocmask(SIG_BLOCK, [PIPE], [FPE USR2], 8) = 0 getpid() = 15056 geteuid32() = 0 getpid() = 15056 geteuid32() = 0 time(NULL) = 1080325192 write(8, "0o\2\1\4cj\4\34ou=Hosts,dc=border...
2008 May 20
1
The specified network name is no longer available 3.0.25 RHEL4
...1410 setresuid32(0, 0, -1) = 0 geteuid32() = 0 kill(11697, SIGUSR1) = 0 --- SIGUSR1 (User defined signal 1) @ 0 (0) --- write(24, "\n", 1) = 1 sigreturn() = ? (mask now [FPE USR2 PIPE]) setresuid32(1410, 1410, -1) = 0 geteuid32() = 1410 getuid32() = 1410 write(5, "\0\0\0/\377SMB/\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0"..., 51) = 51 fcntl64(7, F_SETLKW64, {type=F_WRLCK, whence=SEEK_SET,...
2006 Jan 30
1
nearly there
...nnect and it works now. However after auth, imap crashes with signal 6. This happens on 1 machine, the other (unixware too) work fine. The stack trace doesn't make much sense here it is anway... Core image of imap (process p1) created CORE FILE [makedev in cmd-status.c@sys/mkdev.h] SIGNALED 8 (fpe code[FPE_INTDIV] address[0x804e38b]) in p1 76: return __makedev(ver, maj, min); debug> Stack Trace for p1, Program imap *[0] makedev(maj=16, min=1, presumed: 0x8094258) [cmd-status.c@sys/mkdev.h@76] [1] cmd_store(cmd=0x0, presumed: 0x1, 0x80947a0) [cmd-store.c@139] [2] _cmd_select_full(cmd=0x...
2008 Jan 22
1
[LLVMdev] llvm useability?
What about ARM target ? I mean iPhone/iPod Touch has an ARM11 with a FPE and a VFPE. Does llvm-gcc 2.2 generates better code for them ? I'm a bit disappointed about the llvm-gcc 2.0 I tried for my iPod Touch as I saw it generated ARM code not very optimically : r7(apparently used like a frame pointer even when -fomit-frame-pointer is given) largely overused, ge...
2004 Dec 03
8
smbd hung processes - Samba 3.0.7
We've seen Samba crash and burn twice in the last 48 hours - it just started happening, and we have no idea what might be causing it. I'm hoping that someone will recognize this problem. Platform: we are running RedHat Enterprise Server, with Samba 3.0.7. We're using security=domain in an old-style NT4 domain environment. The symptom that we're seeing is that the number of
2002 Jan 31
4
signal transmission in ssh2
...nt sig) { received_signal = sig; - quit_pending = 1; + if (send_signal == 1) + send_signal = 2; + else + quit_pending = 1; } /* @@ -765,6 +770,26 @@ leave_raw_mode(); } +static char * +sig2name(int sig) +{ +#define SIG(x) if (sig == SIG ## x) return #x + SIG(ABRT); + SIG(ALRM); + SIG(FPE); + SIG(HUP); + SIG(ILL); + SIG(INT); + SIG(KILL); + SIG(PIPE); + SIG(QUIT); + SIG(SEGV); + SIG(TERM); + SIG(USR1); + SIG(USR2); + return ""; +} + /* * Implements the interactive session with the server. This is called after * the user has been authenticated, and a command has been...
2019 Jun 17
2
Constrained integer DIV (WAS: Re: Planned change to IR semantics: constant expressions never have undefined behavior)
...fined behavior. > > We have a few dusty deck codes in-house that depend on this, so I'm > motivated to push our local changes upstream. That said, if no one else > finds value in this, we can keep it local. Do you really need a special way to represent this in IR? If you need a SIGFPE, the frontend can generate the equivalent of "if (x==0) raise(SIGFPE);", which is well-defined across all targets. If you really need a "real" trap, I guess we could expose the x86 idiv as an intrinsic. A real trap would be preferred. I suspect that it would be difficult/expen...
2016 Jun 06
0
flac conversion
...I have a Sound Devices recorder that supports FLAC, but it doesn't play all files from external sources. It's great for recording to FLAC, but not so good for playing files purchased online in FLAC format. Brian Willoughby Sound Consulting On Jun 5, 2016, at 5:28 PM, Frank Esposito <fpesposito at gmail.com> wrote: > thanks for the info -- for the most part I have been using the LAME encoder --- generally I rip my files to flac from CD's then via a series of batch files convert flac -> wav -> mp3 -- it seems to work OK for me -- > > I guess if I get...
2003 Oct 30
0
A Question for Statisticians about SCHWARZ, SHIBATA, RICE ...
Hi! I'm looking for a 'source' about these 'distributions'. SGMASQ, AIC, FPE, HQ, SCHWARZ, SHIBATA, GCV, RICE I would like to use _one_ book ('source') that would have information about all of these. Thank you, len --------------------------------- Exclusive Video Premiere - Britney Spears [[alternative HTML version deleted]]