ich ein Problem mit diesem Python-Code haben:Komplexe Matrix in Python
A = np.zeros((2*M + 2,nt))
A[1, :] = d[0,0] * np.ones((1,nt))
wo d[0,0]
komplex ist. Ich erhielt diesen Fehler:
ComplexWarning: Casting complex values to real discards the imaginary part
während
A[1, :] = d[0,0] * np.ones((1,nt))
standardmäßig 'numpy' Arrays sind' float64', nicht 'int' – donkopotamus
Großartig, vielen Dank! – Martin
Gern geschehen :) – Fma