Null(MASS)
Null()所属R语言包:MASS
Null Spaces of Matrices
矩阵的零空间
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given a matrix, M, find a matrix N giving a basis for the null space. That is t(N) %*% M is the zero and N has the maximum number of linearly independent columns.
鉴于矩阵,M,找到一个矩阵N空空间的基础上。这是t(N) %*% M是零和N线性独立的列的最大数目。
用法----------Usage----------
Null(M)
参数----------Arguments----------
参数:M
Input matrix. A vector is coerced to a 1-column matrix.
输入矩阵。向量是裹挟到1列的矩阵。
值----------Value----------
The matrix N with the basis for the null space, or an empty vector if the matrix M is square and of maximal rank.
矩阵N空的空间,如果矩阵M平方米,最大的排名或空向量的基础上。
参考文献----------References----------
Modern Applied Statistics with S. Fourth edition. Springer.
参见----------See Also----------
qr, qr.Q.
qr,qr.Q。
举例----------Examples----------
# The function is currently defined as[该功能目前定义为]
function(M)
{
tmp <- qr(M)
set <- if(tmp$rank == 0) 1:ncol(M) else - (1:tmp$rank)
qr.Q(tmp, complete = TRUE)[, set, drop = FALSE]
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|