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.
13 lines
288 B
13 lines
288 B
5 months ago
|
from sympy.core.symbol import Symbol
|
||
|
from sympy.matrices.dense import (eye, zeros)
|
||
|
from sympy.solvers.solvers import solve_linear_system
|
||
|
|
||
|
N = 8
|
||
|
M = zeros(N, N + 1)
|
||
|
M[:, :N] = eye(N)
|
||
|
S = [Symbol('A%i' % i) for i in range(N)]
|
||
|
|
||
|
|
||
|
def timeit_linsolve_trivial():
|
||
|
solve_linear_system(M, *S)
|