Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update givens.py #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions givens_inter/givens.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
lib = cdll.LoadLibrary("./givens.so")


pyarr = [1,2,3,4,5,6,7,8,9] # Matrice à décomposer (en 1D)
rows = 3 # On précise les lignes
cols = 3 # les colonnes
matrix = [[1,2,3,],[4,5,6],[7,8,9]]# Matrice à décomposer
pyarr = [] # Matrice à décomposer (en 1D)
N= len(matrix)
for ligne in range(N):
for colonne in range(N):
pyarr.append(matrix[ligne][colonne])

rows = N # On précise les lignes
cols = N # les colonnes

# On précise les types des paramètres en entrées et sortie de la fonction QR sur Go
lib.QR.argtypes = [c_double * len(pyarr)]
Expand Down