svdbip {BMconcor}R Documentation

SVD for one bipartitioned matrix x

Description

SVD for bipartitioned matrix x. r successive Solutions

Usage

svdbip(x, K, H, r)

Arguments

x

a p times q matrix

K

is a row vector which contains the numbers pk, k=1,...,kx, of the partition of x with kx row blocks : sum(pk)=p

H

is a row vector which contains the numbers qh, h=1,...,ky, of the partition of x with ky column blocks : sum(qh)=q

r

The number of wanted successive solutions

Details

The first solution calculates kx+ky normed vectors: kx vectors uk[:,1] of R^{p_k} associated to ky vectors vh[:,1]'s of R^{q_h}, by maximizing \sum_k \sum_h (u_k[:,1]^prime*x_{kh}*v_h[:,1])^2, with kx+ky norm constraints. A value (u_k[,1]^prime*x_{kh}*v_h[,1])^2 measures the relative link between R^{p_k} and R^{q_h} associated to the block xkh. The second solution is obtained from the same criterion, but after replacing each xhk by xkh-xkhvhvh'-ukuk'xkh+ukuk'xkhvhvh'. And so on for the successive solutions 1,2,...,r . The biggest number of solutions may be r=inf(pk,qh), when the xkh's are supposed with full rank; then rmax=min([min(K),min(H)]). When K=p (or H=q, with t(x)), svdcp function is better. When H=q and K=p, it is the usual svd (with squared singular values). Convergence of algorithm may be not global. So the below proposed initialisation of the algorithm may be not very suitable for some data sets. Several different random initialisations with normed vectors might be considered and the best result then choosen.

Value

A list with following components:

u

a p times r matrix of kx row blocks uk (pk x r); uk'*uk = Identity.

v

a q times r matrix of ky row blocks vi (qi x r) of axes in Rqi relative to yi; vi^prime*vi = Identity

s

a kx times ky times r array; with r fixed, each matrix contains kxky values (u_h'*x_{kh}*v_k)^2, the partial (squared) singular values relative to xkh.

Author(s)

Lafosse, R.

References

Kissita G., Cazes P., Hanafi M. & Lafosse (2004) Deux methodes d'analyse factorielle du lien entre deux tableaux de variables partitiones. Revue de Statistique Appliquee.

Examples


x <- matrix(runif(200),10,20)
s <- svdbip(x,c(3,4,3),c(5,15),3)


[Package BMconcor version 2.0.0 Index]