How to create a matrix of same entries?
For example, I want to make a 20 by 20 matrix with all entries being 10. Is there a quick command for that? Thanks!
add a comment
asked 2016-11-29 22:26:27 +0100
This post is a wiki. Anyone with karma >750 is welcome to improve it.
For example, I want to make a 20 by 20 matrix with all entries being 10. Is there a quick command for that? Thanks!
This is one way.
sage: matrix(ZZ, 4, 4, lambda i, j: 10)
[10 10 10 10]
[10 10 10 10]
[10 10 10 10]
[10 10 10 10]
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2016-11-29 22:26:27 +0100
Seen: 545 times
Last updated: Nov 29 '16