Displaying 8 results from an estimated 8 matches for "jobv".
Did you mean:
job
2002 Dec 18
2
meta analysis
Dear R-lister,
is there any function for Meta Analysis in R? (like homogeneity an, risk
differences, relative riskm amd odds ratios?
Many thanks,
Edwin
2004 Jun 16
1
off topic: C/C++ codes for pseudo inverse
Hi,
I am looking for C/C++ codes for computing generalized
inverse of a matrix. Can anyone help me in this
regard?
Thanks,
Mahbub.
2009 Mar 25
2
Listing of LAPACK error codes
...compiler- and CPU-specific."
Is there a listing for the error codes from Lapack routine 'dsyevr'?
Especially I am interested about the meaning and handling of error codes 1
and 2. In Lapack.c I only see the reference to the variable info in certain
Fortran code:
F77_CALL(dsyevr)(jobv, range, uplo, &n, rx, &n, &vl, &vu, &il, &iu,
&abstol, &m, rvalues, rz, &n, isuppz, &tmp, &lwork, &itmp, &liwork, &info);
if (info != 0)
error(_("error code %d from Lapack routine '%s'"), info, "dsyevr")...
2001 Jun 19
5
core dump on 64-bit Solaris (PR#990)
Using the 64-bit Solaris compilers make check dumps core in La_rs at
73 F77_CALL(dsyev)(jobv, uplo, &n, rx, &n, rvalues, work, &lwork,
&info);
I can't reproduce it easily, but example(eigen) occasionally stops with
Error: abs(sm - V %*% diag(lam) %*% t(V)) < 60 * Meps is not TRUE
which might be connected. The tiny rounding errors in example(eigen)
aren't const...
2013 Apr 11
1
La_svd compiler error
...2: ld returned 1 exit status
specifically from the error I understand that error occurs in the link to La_svd which is defined in the first couple of lines in the code:
#include <math.h>
#include <R.h>
#include <Rinternals.h>
#include <Rmath.h>
SEXP La_svd(SEXP jobu, SEXP jobv, SEXP x, SEXP s, SEXP u, SEXP v, SEXP method);
Any ideas?
Thanks
Phil
[[alternative HTML version deleted]]
2011 Jun 06
1
Lapack or Blas crashing R when using "large" matrices (Ubuntu 11.04)
...with Ubuntu 11.04)? Thanks in advance.
Matias
p <- 500
n <- 300
set.seed(1234)
x <- matrix(rnorm(n*p), n, p)
sih <- var(x)
b <- svd(sih)
produces:
?
?*** caught illegal operation ***
address 0x42b8c9, cause 'illegal operand'
Traceback:
?1: .Call("La_svd", jobu, jobv, x, double(min(n, p)), u, v,? "dgsedd",???? PACKAGE = "base")
?2: La.svd(x, nu, nv)
?3: svd(sih)
?
I'm using Ubuntu 11.04 and
> version
??????????????? _???????????????????????????
?platform?????? i686-pc-linux-gnu???????????
?arch?????????? i686??????????????????????...
2011 Jun 04
1
R Crashes when using "large" matrices (Ubuntu 11.04)
...duce it (with Ubuntu
11.04)? Thanks in advance.
p <- 500
n <- 300
set.seed(1234)
x <- matrix(rnorm(n*p), n, p)
sih <- var(x)
b <- svd(sih)
produces:
?*** caught illegal operation ***
address 0x42b8c9, cause 'illegal operand'
Traceback:
?1: .Call("La_svd", jobu, jobv, x, double(min(n, p)), u, v, "dgsedd",???? PACKAGE = "base")
?2: La.svd(x, nu, nv)
?3: svd(sih)
I'm using Ubuntu 11.04 and
> version
?????????????? _???????????????????????????
platform?????? i686-pc-linux-gnu???????????
arch?????????? i686????????????????????????
os...
2011 Jun 03
2
Arules: R Crashes when running eclat with tidLists=TRUE
Hello,
I'm using the eclat function of the arules package (1.0-6) for the
identification of frequent itemsets. I need the tidLists, but if I set
in the function tidLists=TRUE R crashes (Windows XP Professional SP3,
32 bit, R version 2.12.1 (2010-12-16), reproducible on two different
computers) with two different error messages or non at all. Minimum
examples are:
library(arules)