similar to: LU bug in Matrix package

Displaying 8 results from an estimated 8 matches similar to: "LU bug in Matrix package"

2008 Oct 16
1
Two last questions: about output
Here is my little scriptlet: optdata = read.csv("K:\\MerchantData\\RiskModel\\AutomatedRiskModel\\soptions.dat", header = FALSE, na.strings="") attach(optdata) library(MASS) setwd("K:\\MerchantData\\RiskModel\\AutomatedRiskModel") for (i in 1:length(V4) ) { x = read.csv(as.character(V4[[i]]), header = FALSE, na.strings=""); y = x[,1]; fp =
2004 Aug 09
0
e164.lu
Hello, we have set up e164.lu as a test zone, as the delegation for 2.5.3.e164.arpa hasn't been completed yet. For all those who want to call the numbers currently availble directly via SIP, please use the zone name in your enum.conf. If you decide to use the zone, please tell me at mstorck@luxadmin.org, so as soon as the 2.5.3.e164.arpa zone is ready, I will mail you, so you may disable
2008 Jul 09
1
Question regarding lu in package Matrix
Dear R-helpers, I have a question regarding LU-decomposition with function lu in package Matrix. The following simple example confuses me: Why is as.matrix(elu$U) not an upper triangular matrix? u3 <- matrix(c(1,1,1,1,1,1,-1,1,0,0,0,0,0,-1,1,0,0,0,-1,0,1,0,0,0,0,0,-1,1,0,0),5,6,byrow=T) elu <- expand(lu(Matrix(u3,sparse=F))) as.matrix(elu$U) I only have very limited experience with the
2010 Jan 23
2
About LU decomposition in R
Hi, How can I find and download a function in R to do the LU decompostion for finding the upper and lower triangular matrix.  Thank you so much. Joe ___________________________________________________ 您的生活即時通 - 溝通、娛樂、生活、工作一次搞定! [[alternative HTML version deleted]]
2010 Jul 26
1
O/T good c/c++ code for LU decomposition
Dear R People: Could someone recommend a good c/c++ code (or Fortran) for LU decomposition, please? Sorry to bother about this. I'm trying to do some "non-R" work that requires a matrix inversion. Thanks, Erin -- Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: erinm.hodgess at gmail.com
2010 Jan 09
0
Activity after LU with ZFS/Zone working
Hy all, recently I upgraded to S10U8 a T5120 using LU. The system had a zones configured and at time of upgrade procedure the zones was still alive and worked fine. The LU procedure was ended successfully. Zones on the system was installed in a ZFS filesystem. Here the result at the end of LU (ABE-from: s10Aug2007, ABE-to: s10Set2009): # zfs list NAME USED AVAIL REFER MOUNTPOINT
2010 Sep 08
2
Correlation question
Hi everyone, I'm observing what I believe is weird behaviour when attempting to do something very simple. I want a correlation matrix, but my matrix seems to contain correlation values that are not found when executed on pairs: > test2$P2 [1] 2 2 4 4 1 3 2 4 3 3 2 3 4 1 2 2 4 3 4 1 2 3 2 1 3 > test2$HP_tot [1] 10 10 10 10 10 10 10 10 136 136 136 136 136 136 136 136 136
2005 Jan 09
0
dist{amap} error??
Dear all, I have come across a very confusing matter regarding dist() supplied by the amap package: --- m is just a test matrix > library(amap) Loading required package: mva Warning message: package 'mva' has been merged into 'stats' > m a b c aa 0.1 0.2 0.3 bb 2.0 3.0 4.0 cc 2.0 4.0 6.0 dd 0.3 0.2 0.1 > ds<-dist(m,method="pearson") >