You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
306 B
22 lines
306 B
5 months ago
|
from sympy.core.numbers import Integer
|
||
|
from sympy.matrices.dense import (eye, zeros)
|
||
|
|
||
|
i3 = Integer(3)
|
||
|
M = eye(100)
|
||
|
|
||
|
|
||
|
def timeit_Matrix__getitem_ii():
|
||
|
M[3, 3]
|
||
|
|
||
|
|
||
|
def timeit_Matrix__getitem_II():
|
||
|
M[i3, i3]
|
||
|
|
||
|
|
||
|
def timeit_Matrix__getslice():
|
||
|
M[:, :]
|
||
|
|
||
|
|
||
|
def timeit_Matrix_zeronm():
|
||
|
zeros(100, 100)
|