私のコードは、ユーザーが開始状態に適用されるカスタムマトリックスを作成するためのものです。ユーザーが望むあらゆる正方行列を生成できるようにしたいので、私はいくつかのファンキーなことをする必要があります。私の基本的なアプローチは、ユーザーに1つのリストに入れられるさまざまな要素を入力させることでした。リスト内の要素の位置に基づいて、それらは異なる行に配置されます。私はnumpy.append()
を使ってこれを行います。しかし、それは私の.append()
ラインに応じて、エラーマトリックスが正しく追加されていません
Traceback (most recent call last):
File "/home/physicsnerd/Documents/Quantum-Computer-Simulator/tests.py", line 39, in <module>
customop(qstat)
File "/home/physicsnerd/Documents/Quantum-Computer-Simulator/tests.py", line 21, in customop
np.append(matrix,current_row,axis=0)
File "/usr/lib/python3/dist-packages/numpy/lib/function_base.py", line 4575, in append
return concatenate((arr, values), axis=axis)
ValueError: all the input arrays must have same number of dimensions
を与えています。私は間違って何をしていますか?
このコードケースでエラーを再現するには、「2」と入力し、「0」と入力し、「1」と入力し、「1」と入力して「0」と入力します。最後の4つの数字の間でもう1つの注意 - print(current_row)
行はデバッグ参照のためのものです。 print(matrix)
行と同じです。
コード上記の指定された入力が与えられると
import numpy as np
import math
def customop(qstat):
dimensions = float(input("What are the dimensions of your (square) matrix? Please input a single number: "))
iterator = 1
iterator_2 = 1
elements = []
while iterator <= dimensions:
while iterator_2 <= dimensions:
elements.append(float(input("Matrix element at "+str(iterator)+","+str(iterator_2)+": ")))
iterator_2+=1
iterator_2 = 1
iterator+=1
matrix = np.matrix([])
element_places = list(range(len(elements)))
current_row = []
for i in element_places:
print(i%dimensions)
if i%dimensions == 0 and i > 0:#does this work? column vs row, elements, etc
np.append(matrix,current_row,axis=0)
current_row = []
current_row.append(elements[i])
elif i == 0:
current_row.append(elements[i])
print(current_row)
else:
current_row.append(elements[i])
print(current_row)
if np.array_equal(np.dot(matrix, matrix.conj().T), np.identity(2)) == True:
print(matrix)
return np.dot(matrix, qstat)
else:
print(matrix)
print("matrix not unitary, pretending no gate was applied")
return qstat
qstat = np.matrix([[0],[1]])
customop(qstat)
完全なエラーメッセージを記載してください。 – DyZ
@DYZ編集しました。 – heather
あなたは今、 '行列'の次元を先取りしていますか?なぜ完全な行列広告を作成しても、単に 'elements [i]'を 'append'sなしで正しい位置に格納するのはなぜですか? – DyZ