Displaying 5 results from an estimated 5 matches for "state_t".
Did you mean:
state_1
2004 Nov 16
1
lme, two random effects, poisson distribution
...d by
Poisson dist. (# of pumps is very often = 0)
The slugs were observed during 12 time slots which are correlated in
time as AR(1). The time slots are divided into two categories:
Resting time slots (the first 10)
Excited time slots (the last 2)
I used model:
************pumps_ti = state_t + slugs_i + error_ti
slugs and error are normaly distributed
pumps_ti - # of pumps for i-th animal and t-th time slot
x_t - order of the time slot (x_1 = 1, ..., x_12 = 12)
state_t - state_t = 0 for resting time slots (t=1,...,10)
state_t = 1 for excited time slots...
2011 Dec 01
1
Estimation of AR(1) Model with Markov Switching
...(X)-1)
logf <- rep(0, nrow(X)-1)
p_s0_t[1] <- p0_s0
p_s1_t[1] <- p0_s1
# initiate hamilton filter
for(i in 2:nrow(X)) {
# calculate prior probabilities using the TPT
# TPT for this example gives us
# p_si_t_1 = p_si_t_1_si * p_si_t + p_si_t_1_sj * p_si_t
# where p_si_t_1 is the prob state_t = i given information @ time t-1
# p_si_t_1_sj is the prob state_t = i given state_t_1 = j, and all info @
time t-1
# p_si_t is the prob state_t = i given information @ time t
# in this simple example p_si_t_1_sj = p_si_sj
p_s0_t_1[i] <- (p_s0_s0 * p_s0_t[i-1]) + (p_s0_s1 * p_s1_t[i-1])
p_s1_t...
2013 Aug 29
7
[PATCH 0/3] x86: mwait_idle improvements ported from Linux
1: x86/mwait_idle: remove assumption of one C-state per MWAIT flag
2: x86/mwait_idle: export both C1 and C1E
3: x86/mwait_idle: initial C8, C9, C10 support
Signed-off-by: Len Brown <len.brown@intel.com>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
2015 May 21
2
[LLVMdev] How can I remove these redundant copy between registers?
Hi,
I've been working on a Blackfin backend (llvm-3.6.0) based on the previous
one that was removed in llvm-3.1.
llc generates codes like this:
29 p1 = r2;
30 r5 = [p1];
31 p1 = r2;
32 r6 = [p1 + 4];
33 r5 = r6 + r5;
34 r6 = [p0 + -4];
35 r5 *= r6;
36 p1 = r2;
37 r6 = [p1 + 8];
38 p1 = r2;
p1 and r2 are in different register classes.
A p*
2011 Aug 05
0
Wine release 1.3.26
...include gettext-po.h if we don't have the corresponding library.
wined3d: Introduce a "state" variable in device_stream_info_from_declaration().
wined3d: Get rid of the use_vshader parameter to device_stream_info_from_declaration().
wined3d: Get rid of the redundant state_table parameter to context_invalidate_state().
wined3d: Only invalidate state for the current context in swapchain_blit().
wined3d: Only invalidate state for the current context in wined3d_surface_depth_blt_fbo().
wined3d: Only invalidate state for the current context in surface_blt...