3
What functions should I use to make the following calculations with matrices in R:
- Find the transposed matrix;
- Find the inverse matrix;
- Find the identity matrix;
- Finding the determinant of a matrix.
3
What functions should I use to make the following calculations with matrices in R:
- Find the transposed matrix;
- Find the inverse matrix;
- Find the identity matrix;
- Finding the determinant of a matrix.
3
Where M is its matrix,
t(M)
solve(M)
diag(x = 1, nrow, ncol)
det(M)
Browser other questions tagged r
You are not signed in. Login or sign up in order to post.
This comes in R-intro.pdf: transposed section 5.6; identity 5.7.1; inverse 5.7.2; determinant 5.7.4. And, of course, much more.
– Rui Barradas