作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在内存中有一个对称矩阵(4x4)。不幸的是, sum( originalMatrix != t( originalMatrix ) ) = 6. 所以我输入了那个矩阵并将它读回内存。现在 sum( dputMatrix!= t( dputMatrix) ) = 0. 这怎么可能,我如何测试内存矩阵的对称性?
originalMatrix = ...
sum( originalMatrix != t( originalMatrix ) ) # results in 6
dput( originalMatrix )
dputMatrix = structure(c(0.00117771346463494, -1.57864028664711e-05, 0.000293652924987303,
-9.85387333663002e-05, -1.57864028664711e-05, 0.000194782042576016,
6.9133672862693e-05, 4.23792732612071e-05, 0.000293652924987303,
6.9133672862693e-05, 0.00046216043028767, 2.70172523991749e-05,
-9.85387333663002e-05, 4.23792732612071e-05, 2.70172523991749e-05,
0.00017694896679169), .Dim = c(4L, 4L), .Dimnames = list(c("a00088630",
"a0091n", "a01010", "a01307810"), c("a00088630", "a0091n", "a01010",
"a01307810")))
sum( dputMatrix != t( dputMatrix ) ) # results in 0!!!
最佳答案
这是FAQ 7.31的体现。请注意,如果要将 R 对象保存到全精度,则应使用 save()。
请打勾!
关于r - 对称矩阵上的对称性测试失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7663311/
我正在使用 Ruby 加密并使用 AES-256 通过 JavaScript 解密,但我在跨平台时遇到问题,即在解密 Ruby 的输出时 JS 返回乱码。 我正在使用此处的 JS AES 实现:htt
我是一名优秀的程序员,十分优秀!