R语言
det
位于 base
包(package)。 说明
det
计算矩阵的行列式。 determinant
是一个通用函数,它分别返回行列式的模数(可选对数刻度)以及行列式的符号。
用法
det(x, ...)
determinant(x, logarithm = TRUE, ...)
参数
x |
数字矩阵:逻辑矩阵被强制转换为数字。 |
logarithm |
逻辑性; if |
... |
可选参数。目前没有使用。 |
细节
determinant
函数使用 LU 分解,而 det
函数只是对 determinant
调用的包装。
通常,计算行列式并不是解决给定问题所应该做的。
值
对于 det
, x
的行列式。对于 determinant
,包含组件的列表
modulus |
一个数值。如果 |
sign |
整数;根据行列式是正还是负, 或 。 |
例子
(x <- matrix(1:4, ncol = 2))
unlist(determinant(x))
det(x)
det(print(cbind(1, 1:3, c(2,0,1))))
相关用法
- R detach 从搜索路径中分离对象
- R deparse 表达式解析
- R deparseOpts 表达式解析选项
- R debug 调试函数
- R delayedAssign 延迟评估和承诺
- R dump R 对象的文本表示
- R diag 矩阵对角线
- R dots ...、..1 等在函数中使用
- R do.call 执行函数调用
- R dcf 以 DCF 格式读写数据
- R data.class 对象类
- R dimnames 对象的暗名称
- R dyn.load 对外函数接口
- R diff 滞后差异
- R dput 将对象写入文件或重新创建它
- R duplicated 确定重复元素
- R dim 物体的尺寸
- R dontCheck 抑制检查的身份函数
- R drop 删除冗余盘区信息
- R difftime 时间间隔/差异
- R data.frame DataFrame
- R double 双精度向量
- R data.matrix 将 DataFrame 转换为数字矩阵
- R date 系统日期和时间
- R droplevels 删除因子中未使用的级别
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Calculate the Determinant of a Matrix。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。