isSymmetric | R Documentation |
Test if a float matrix is symmetric.
## S4 method for signature 'float32'
isSymmetric(object, ...)
object |
A float vector/matrix. |
... |
Ignored. |
A logical value.
library(float)
s = flrunif(10, 3)
isSymmetric(s)
cp = crossprod(s)
isSymmetric(s)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.