Ask Your Question
2

matrix size

asked 2011-03-22 15:22:48 +0200

calc314 gravatar image

I am writing a function that may take a matrix of varying size as an input. What is the command for finding the dimensions of a matrix in Sage?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
5

answered 2011-03-22 15:28:53 +0200

Mike Hansen gravatar image

You can get the dimensions with the nrows and ncols methods:

sage: m
[0 0 0]
[0 0 0]
sage: m.nrows()
2
sage: m.ncols()
3
edit flag offensive delete link more

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: 2011-03-22 15:22:48 +0200

Seen: 15,833 times

Last updated: Mar 22 '11