Displaying 20 results from an estimated 200 matches similar to: "SAMPLS R implementation : pbm with algorithm application"
2003 Feb 06
1
Call C routine problem
When I call C function from Splus, I often meet this problem:
"Problem: Couldn't find a function definition for "Stest" "
My c function is saved as 'test.c' (the function is also named as 'test'
My splus function is saved as 'Stest', such as
Stest <-
function(d,f)
{
.C("test",
as.integer(d),
as.single(f))
}
Assume my files (test.c
2019 Feb 08
0
lib-master test failure i686
Any Ideas?
On 2/7/2019 12:13 PM, Eric Broch via dovecot wrote:
>
> Hello List,
>
> I've built and checked successfully dovecot and dovecot-pigeonhole on
> CentOS 6 x86_64
>
> Immediately below are the successful make check (ok) tests of dovecot
> 'lib-master' (x86_64).
>
> Below that are the unsuccessful (fails) tests of dovecot 'lib-master'
2019 Feb 07
2
lib-master test failure i686
Hello List,
I've built and checked successfully dovecot and dovecot-pigeonhole on
CentOS 6 x86_64
Immediately below are the successful make check (ok) tests of dovecot
'lib-master' (x86_64).
Below that are the unsuccessful (fails) tests of dovecot 'lib-master' on
i686.
Does anyone have a clue as to why these test would fail on i686?
(x86_64):
Making check in lib-master
2019 Feb 08
2
lib-master test failure i686
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div>
Can you try if https://github.com/dovecot/core/commit/de42b54aaf165d4f62b45be864dde36bdbbc4276.patch helps?
</div>
<div>
<br>
</div>
<div>
Aki
</div>
<blockquote type="cite">
<div>
2011 Feb 10
2
Rioja package, creating transfer function, WA, "Error in FUN"
Hi, I am a new R user and am trying to construct a palaeoenvironmental
transfer function (weighted averaging method) using the package rioja.
I've managed to insert the two matrices (the species abundance and the
environmental data) and have assigned them to the y and x values
respectively. When I try and enter the 'WA' function though, I get an 'Error
in FUN' message (see
2012 Jun 19
1
ANOVA help
Hi All,
I have a microarray dataset as follows:
expt1 expt2 expt3 expt4 expt 5
gene1 val val val val val
gene2 val val val val val
.
.
..
gene15000 val val val val val
The result is from the same organism in four different experiments. Also, there are 4 replicates of each
2008 Jul 10
2
[PATCH] tripplite driver updates
The tripplite driver was developed on a machine with a reliable serial
connection, and inherited the assumption that the serial line connection
would not drop, reorder, or fail character read and writes. This patch
adds significantly improved failure mode handling and also does basic
checks of data validity.
There's also a few minor cleanups/beautification.
I've tested this code on my
2011 Mar 09
2
Anomaly with unique and match
I stumbled onto this working on an update to coxph. The last 6 lines
below are the question, the rest create a test data set.
tmt585% R
R version 2.12.2 (2011-02-25)
Copyright (C) 2011 The R Foundation for Statistical Computing
ISBN 3-900051-07-0
Platform: x86_64-unknown-linux-gnu (64-bit)
# Lines of code from survival/tests/singtest.R
> library(survival)
Loading required package: splines
2015 Mar 07
2
[LLVMdev] cannot understand global c++API code
Hi all,
translating the following c code to llvm c++Api code, I can not understand
the result.
Perhaps someone could explain it to me.
c code
---------------------------------
struct stest {
int age;
float weight;
} foo={44,67.2};
int main() {
foo.weight=68.2;
...
----------------------------------------
API code
// this is clear
ConstantFP* const_float_102 =
2018 Feb 21
2
Fwd: Migrating server
Hi Andrew,
I've setup a new Samba 4 box (sam4dc) on Ubuntu 14.04 with Samba 4.3.11. I
have the following
Just to clarify, sam3DC is the current DC with samba 3.6.3
smb.conf
[global]
workgroup = STEST
netbios name = Sam4DC
password server = Sam3DC (This is the current DC)
security = user
resolv.conf
nameserver = 192.168.10.1 (IP of Sam3DC)
I can ping the sam3dc from the
2018 Feb 21
0
Fwd: Migrating server
On Wed, 2018-02-21 at 15:06 +1000, Rob Thoman wrote:
> Hi Andrew,
>
> I've setup a new Samba 4 box (sam4dc) on Ubuntu 14.04 with Samba 4.3.11. I have the following
>
> Just to clarify, sam3DC is the current DC with samba 3.6.3
>
> smb.conf
>
> [global]
> workgroup = STEST
> netbios name = Sam4DC
> password server = Sam3DC (This is the current
2004 Jan 02
3
* Stresstool Help required
Hi all,
I am trying to write a program that sends SIP requests to asterisk. My aim
is to make asterisk record as many voicemails it can at a time. The design
of the program is like this:
There are two processes: One main process and a child process (No flames
pls. I have very little idea about pthreads and dl modules)
The main program asks the user to input the number of test instances. When
2018 Feb 21
2
Fwd: Migrating server
Hi Andrew,
I can't shutdown the old samba box as it will still be hosting the shares.
Can I do any of the following?
Would it make sense for me to migrate the backend to LDAP ?
Or following your first comment, can I setup rysnc every 5 minutes to
replicate data. You're right it is a migration path but I can't migrate
until this works in the test environment
Thank you
RT
On Wed,
2015 Mar 16
4
[LLVMdev] size of const_ptr for array index
Hi all,
when e.g. accessing a global variable residing in a structure, the c++API
code looks like:
std::vector<Constant*> const_ptr_183_indices;
const_ptr_183_indices.push_back(const_int32_172);
const_ptr_183_indices.push_back(const_int32_184);
const_ptr_183_indices.push_back(const_int64_175);
Constant* const_ptr_183 = ConstantExpr::getGetElementPtr(gvar_struct_foo,
2015 Mar 10
3
[LLVMdev] Chatty C++API code generation
Hi all,
when I have c code like
--- c code -------------
struct stest { /* deklariert den Strukturtyp person */
int age;
float weight;
} foo={44,67.2}; /* deklariert Variable des Typs person */
int main() {
callAFunction(foo.weight);
------------------------
The generated c++API code to me seems to be too chatty in the sense that
the foo.weight's data
2000 Apr 20
1
installation pbm on irix 6.2 : make step
Hi everybody,
i try to install the R 1.0.1 on a mips-sgi-irix6.2 system.
The configure seems ok : it ends with
- souce directory : .
- installation dircetory : /usr/local
- C compiler : cc -g
- Fortran compiler : fort77
- Gnome support : no
But when i enter : make it says:
-syntax error in file ../tools/jeywords2html at line 9, next 2 tokens
"my $key"
-syntax error in file
2007 Nov 07
1
strwidth and strheight for rotated text
Dear All,
I would like to plot text with a box around it. I used strwidth and
strheight to compute the size of the box which is plotted with rect:
z <- rnorm(10)
# horizontal text works
plot(rnorm(10))
x1 <- 5
y1 <- 0
label <- "Label"
cha <- paste(" ", label, " ", sep = "")
xh <- strwidth(cha, cex = par("cex"))
yh <-
2005 Nov 18
0
mdf no sound issue
Did a bit of tuning in SVN. Could you try that? What frame size, filter
length, sampling rate are you using?
All the process you describe is actually the tip of the iceberg I think.
There is something making the adaptation diverge, which causes Eh and Yh
to be large and so on. The part I changed is probably the one causing
divergence. If it doesn't work, reducing the coefficients even more
2011 Jul 26
0
Extensión de propiedades de una función
Saludos Cordiales
Estoy tratando de obtener la descomposición de varianza para un modelo de vectores autorregresivos estructural pero el módulo vars no permite hacerlo de manera directa, sin embargo, encontré programaciones de funciones específicas para los vectores autorregresivos estructurales que se acoplan directamente al modelo VARs, alguien me puede decir en que parte debo incorporar la
2010 Jun 23
2
possibility to determine whether a script is "sourced"?
Dear R community,
I am running some rather large scripts either by executing single blocks of them separately or by executing them at once via
source('script.R')
Now there is a lot of code in those scripts that I only want to run when I run them manually, so I wonder whether there is any way to automatically find out whether the script is run manually stepwise or whether it is run via