norm.Hermitian(x, type="M", lower=T)
x <- Matrix( sample(-3:3, size = 9, replace = T), nrow = 3, ncol = 3) x[row(x) > col(x)] <- t(x)[row(x) > col(x)] # construct symmetric matrix class(x) <- Matrix.class(x) norm(x, "1") norm(x, "I") norm(x, "F") norm(x, "M")