search for: tsparam

Displaying 4 results from an estimated 4 matches for "tsparam".

2017 Feb 06
2
Real time threads don't work in libvirt containers under CentOS 7.3
...;pthread.h> pthread_t test_thread; void *test(void *arg) { printf("Starting thread\n"); sleep(1); printf("Thread complete\n"); return 0; } int main(int argc, char *argv[]) { int rc; printf("Starting main\n"); struct sched_param tsparam; pthread_attr_t tattr; memset(&tsparam, 0, sizeof(tsparam)); pthread_attr_init(&tattr); pthread_attr_setinheritsched(&tattr, PTHREAD_EXPLICIT_SCHED); pthread_attr_setschedpolicy(&tattr, SCHED_FIFO); tsparam.sched_priority = sched_get_priority_max(SCHED_...
1999 Jul 08
1
new time series package available
...pectrum Estimation sunspot Yearly Sunspot Data, 1700-1988. Monthly Sunspot Data, 1749-1997. surrogate Generate Surrogate Data toeplitz Form Symmetric Toeplitz Matrix treering Yearly Treering Data, -6000-1979. tsparam Time Series Paramater Object and should be more or less well documented. The library is a port of a part of my octave time series library, and, at the moment it does not contain routines for estimating particular time series models. However, I plan to port my VAR routines (Johanse...
1999 Jul 08
1
new time series package available
...pectrum Estimation sunspot Yearly Sunspot Data, 1700-1988. Monthly Sunspot Data, 1749-1997. surrogate Generate Surrogate Data toeplitz Form Symmetric Toeplitz Matrix treering Yearly Treering Data, -6000-1979. tsparam Time Series Paramater Object and should be more or less well documented. The library is a port of a part of my octave time series library, and, at the moment it does not contain routines for estimating particular time series models. However, I plan to port my VAR routines (Johanse...
1999 Jul 15
3
tseries
Martyn Plummer wrote: > Dear Adrian, Hi Martin > > > Thank you for providing your time series library for R. I have been > working on a time series package myself, with help from Paul Gilbert. It > is called "bats" (doesn't stand for anything except possibly "basic time > series") and can be found in the devel directory on CRAN. > > The