Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit a411049

Browse files
MatteoCatidimpase
authored andcommitted
Add skew_hadamard_matrix and regular_symmetric_hadamard_matrix_with_constant_diagonal to hadamard_matrix function
1 parent c1a371e commit a411049

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/sage/combinat/matrices/hadamard_matrix.py

+8
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,14 @@ def hadamard_matrix(n,existence=False, check=True):
448448
if existence:
449449
return True
450450
M = hadamard_matrix_paleyI(n)
451+
elif skew_hadamard_matrix(n, existence=True) is True:
452+
if existence:
453+
return True
454+
M = skew_hadamard_matrix(n, check=False)
455+
elif regular_symmetric_hadamard_matrix_with_constant_diagonal(n, 1, existence=True) is True:
456+
if existence:
457+
return True
458+
M = regular_symmetric_hadamard_matrix_with_constant_diagonal(n, 1)
451459
else:
452460
if existence:
453461
return Unknown

0 commit comments

Comments
 (0)