Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cat << EOF > /tmp/matrix.R
- D = matrix(
- data = c(1, 2, 3, 4),
- nrow = 2,
- ncol = 2,
- byrow = TRUE
- )
- solve(D)
- EOF
- R --no-save < /tmp/matrix.R
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement