expand(Matrix)
expand()所属R语言包:Matrix
Expand a Decomposition into Factors
展开变成因素的分解
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Expands decompositions stored in compact form into factors.
扩展存储到紧凑的形式因素的分解。
用法----------Usage----------
expand(x, ...)
参数----------Arguments----------
参数:x
a matrix decomposition.
矩阵分解。
参数:...
further arguments passed to or from other methods.
通过进一步的论据或其他方法。
Details
详情----------Details----------
This is a generic function with special methods for different types of decompositions, see showMethods(expand) to list them all.
这是一个特殊的方法,为不同类型的分解的通用功能,看到showMethods(expand)全部列出来。
值----------Value----------
The expanded decomposition, typically a list of matrix factors.
扩大分解,通常的矩阵因素的列表。
注意----------Note----------
Factors for decompositions such as lu and qr can be stored in a compact form. The function expand allows all factors to be fully expanded.
如lu和qr可以储存在一个紧凑的形式分解的因素。功能expand允许所有因素,要充分扩大。
参见----------See Also----------
The LU decomposition lu, for which there is an expand method; facmul.
LU分解lu,其中有一个expand方法;facmul。
举例----------Examples----------
(x <- Matrix(round(rnorm(9),2), 3, 3))
(ex <- expand(lux <- lu(x)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|