Displaying 20 results from an estimated 1000 matches similar to: "SVD, UV-Decomposition and NMF"
2009 Nov 27
0
NMF package for Nonnegative Matrix Factorization
The 'NMF' package implements a number of standard algorithms to perform
Nonnegative Matrix Factorization.
It also provides a flexible framework to easily test and develop new
methods, as well as a layer to work with Bioconductor objects.
The package is available from CRAN. Feedbacks are welcome.
--
Renaud Gaujoux
Computational Biology - University of Cape Town
South Africa
2009 Nov 27
0
NMF package for Nonnegative Matrix Factorization
The 'NMF' package implements a number of standard algorithms to perform
Nonnegative Matrix Factorization.
It also provides a flexible framework to easily test and develop new
methods, as well as a layer to work with Bioconductor objects.
The package is available from CRAN. Feedbacks are welcome.
--
Renaud Gaujoux
Computational Biology - University of Cape Town
South Africa
2009 Jan 26
0
Spectral analysis with mtm-svd Multi-Taper Method Combined with Singular Value Decomposition
Hi list,
Does anyone know if there is a library in R that does MTM-SVD method for
spectral analysis?
Thanks
-----
Yasir H. Kaheil
Columbia University
--
View this message in context: http://www.nabble.com/Spectral-analysis-with-mtm-svd-Multi-Taper-Method-Combined-with-Singular-Value-Decomposition-tp21671934p21671934.html
Sent from the R help mailing list archive at Nabble.com.
2004 Apr 30
1
calculation of U and V matrix of SVD decomposition (according to LINPACK, X = UDV')
Hello,
Like QR decomposition, I am looking for decomposition to get U and V matrix
of SVD decomposition (according to LINPACK, X = UDV'). Do you know if there
is a function which could calculate this decomposition?
Look forward to your reply,
Haleh
2003 Feb 06
6
Confused by SVD and Eigenvector Decomposition in PCA
Hey, All
In principal component analysis (PCA), we want to know how many percentage
the first principal component explain the total variances among the data.
Assume the data matrix X is zero-meaned, and
I used the following procedures:
C = covriance(X) %% calculate the covariance matrix;
[EVector,EValues]=eig(C) %%
L = diag(EValues) %%L is a column vector with eigenvalues as the elements
percent
2013 Aug 08
1
Reason for difference in singular value decomposition produced by function La.svd (via prcomp)?
Dear expeRts,
I have run some simulations under R 2.15.1 on a Mac, and I have rerun a
sample of them under R 3.0.1 on Windows (and also for comparison under
R2.14.1 on Windows). For most cases, I get exactly the same results in
all three runs. However, for those cases that depend on principal
components computed with prcomp, where the particular choice of the
orthogonalization is arbitrary
2013 Aug 08
1
Reason for difference in singular value decomposition produced by function La.svd (via prcomp)?
Dear expeRts,
I have run some simulations under R 2.15.1 on a Mac, and I have rerun a
sample of them under R 3.0.1 on Windows (and also for comparison under
R2.14.1 on Windows). For most cases, I get exactly the same results in
all three runs. However, for those cases that depend on principal
components computed with prcomp, where the particular choice of the
orthogonalization is arbitrary
2011 Feb 04
12
Run Nice Player .nmf app
Hi all,
I'm needing/trying to save linux in my company. I have files in format .nmf (from a company called Nice) to listen. Don't have open or proprietary codecs for linux. I can only to the Nice Player. <Ubuntu Desktop>
I've tried:
1- copy of folder installed in the windows for linux ubuntu desktop and run "wine nice.exe" and dont' run
2- run the package of
2003 Jul 03
2
SVD and spectral decompositions of a hermitian matrix
Hi:
I create a hermitian matrix and then perform its singular value
decomposition. But when I put it back, I don't get the original
hermitian matrix. I am having the same problem with spectral value
decomposition as well.
I am using R 1.7.0 on Windows. Here is my code:
X <- matrix(rnorm(16)+1i*rnorm(16),4)
X <- X + t(X)
X[upper.tri(X)] <- Conj(X[upper.tri(X)])
Y <-
2002 Oct 29
0
patch to mva:prcomp to use La.svd instead of svd (PR#2227)
Per the discussion about the problems with prcomp() when n << p, which
boils down to a problem with svd() when n << p,
here is a patch to prcomp() which substitutes La.svd() instead of svd().
-Greg
(This is really a feature enhancement, but submitted to R-bugs to make sure
it doesn't get lost. )
*** R-1.6.0/src/library/mva/R/prcomp.R Mon Aug 13 17:41:50 2001
---
2005 Jan 03
0
Echo problem - (sorry if this is an nmf question)
I recently installed * on my firewall and that of a relative some miles
away. I route sipphone
(kphone and x-lite) calls from deep within the backbone (two layers of
firewall) on each end to the other. Works fine between @200Mhz pentium
doorstop linux boxes (even w/2.4 kernel).The problem of course is the
output of the speaker at the other end is picked up by the microphone
(confirmed by
2002 Apr 01
3
svd, La.svd (PR#1427)
(I tried to send this earlier, but it doesnt seem to have come through,
due to
problems on my system)
Hola:
Both cannot be correct:
> m <- matrix(1:4, 2)
> svd(m)
$d
[1] 5.4649857 0.3659662
$u
[,1] [,2]
[1,] -0.5760484 -0.8174156
[2,] -0.8174156 0.5760484
$v
[,1] [,2]
[1,] -0.4045536 0.9145143
[2,] -0.9145143 -0.4045536
> La.svd(m)
$d
[1]
2008 May 16
1
Dimensions of svd V matrix
Hi,
I'm trying to do PCA on a n by p wide matrix (n < p), and I'd like to
get more principal components than there are rows. However, svd() only
returns a V matrix of with n columns (instead of p) unless the argument
nv=p is set (prcomp calls svd without setting it). Moreover, the
eigenvalues returned are always min(n, p) instead of p, even if nv is set:
> x <-
2007 Feb 05
0
strange error message get from La.svd(X)
Generator Microsoft Word 11 (filtered medium) Hi,
I'm the mannova package maintainer. We used La.svd(X, method="dgesvd") in maanova package before. After R-2.3.0, the old La.svd() method was deprecated for option method="dgesvd". I changed maanova code correspondingly, which will call method="dgesdd" instead. But after that, we keep getting below error message
2000 Jul 05
0
svd() (Linpack) problems/bug for ill-conditioned matrices (PR#594)
After fixing princomp(), recently,
{tiny negative eigen-values are possible for non-negative
definite matrices}
Fritz Leisch drew my attention to the fact the not only eigen() can be
funny, but also svd().
Adrian Trappleti found that the singular values returned
can be "-0" instead of "0". This will be a problem in something like
sd <- svd(Mat) $ d
2008 Apr 15
1
SVD of a variance matrix
Hello!
I suppose this is more a matrix theory question than a question on R,
but I will give it a try...
I am using La.svd to compute the singular value decomposition (SVD) of
a variance matrix, i.e., a symmetric nonnegative definite square
matrix. Let S be my variance matrix, and S = U D V' be its SVD. In my
numerical experiments I always got U = V. Is this necessarily the
case? Or I might
2001 Sep 06
1
svd and eigen
Hello List,
i need help for eigen and svd functions. I have a non-symmetric
square matrix. These matrix is not positive (some eigenvalues are
negative). I want to diagonalise these matrix. So, I use svd and
eigen and i compare the results. eigen give me the "good" eigenvalues
(positive and negative). I compare with another software and the
results are the same. BUT, when i use svd,
2000 Aug 10
1
svd error (PR#631)
--=====================_24736660==_
Content-Type: text/plain; charset="iso-8859-1"; format=flowed
Content-Transfer-Encoding: quoted-printable
SVD-Error on
R 1.1.0
Windows 98
I get the following error applying svd on a positive definite matrix :
> sk2
[,1] [,2] [,3] [,4] [,5]
[1,] 1.0460139783 0.084356992 -2.810553e-04
2011 Sep 13
1
SVD Memory Issue
I am trying to perform Singular Value Decomposition (SVD) on a Term Document
Matrix I created using the 'tm' package. Eventually I want to do a Latent
Semantic Analysis (LSA).
There are 5677 documents with 771 terms (the DTM is 771 x 5677). When I try
to do the SVD, it runs out of memory. I am using a 12GB Dual core Machine
with Windows XP and don't think I can increase the memory
2002 Nov 17
1
SVD for reducing dimensions
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi all, this is probably simple and I'm just doing something stupid, sorry
about that :-)
I'm trying to convert words (strings of letters) into a fairly small
dimensional space (say 10, but anything between about 5 and 50 would be ok),
which I will call a feature vector. The the distance between two words
represents the similarity of the