powered by
Creates matrix from array symbol
matrify(x)
Array symbol to convert to matrix
if (has_sympy()) { x <- symbol("x") y <- symbol("y") f <- 3*x^2 + x*y^2 matrify(f) h <- der2(f, list(x, y)) h dim(h) H <- matrify(h) H dim(H) }
Run the code above in your browser using DataLab