Ask Your Question
0

How to create a matrix of same entries?

asked 2016-11-29 22:26:27 +0200

this post is marked as community wiki

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!

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2016-11-29 22:47:13 +0200

slelievre gravatar image

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]
edit flag offensive delete link more

Comments

Thank you! This is what I was looking for.

Lisewe gravatar imageLisewe ( 2016-11-29 22:51:54 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2016-11-29 22:26:27 +0200

Seen: 359 times

Last updated: Nov 29 '16