feat: OVF formula 67

This commit is contained in:
mayge
2025-09-17 02:45:10 -04:00
parent 1b21b940a4
commit e1bc69c6fb
10 changed files with 724 additions and 446 deletions

9
test/test_numpy.py Normal file
View File

@@ -0,0 +1,9 @@
import numpy as np
# 创建一个复数矩阵
A = np.array([[1+2j, 2-1j], [3+4j, 4+0j]])
Q, R = np.linalg.qr(A)
print("Q =\n", Q)
print("R =\n", R)