issmall | R Documentation |
Given a k
-form, return TRUE
if it is “small”
issmall(M, tol=1e-8)
M |
Object of class |
tol |
Small tolerance, defaulting to |
Returns a logical
Robin K. S. Hankin
o <- kform_general(3,2,runif(3))
M <- matrix(rnorm(9),3,3)
discrepancy <- o - pullback(pullback(o,M),solve(M))
discrepancy # print method might imply coefficients are zeros
issmall(discrepancy) # should be TRUE
is.zero(discrepancy) # might be FALSE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.