多項式のクラスを行っていますが、コピー機能に問題があります。Poly オブジェクトのコピーを作成し、新しい Poly オブジェクトへの参照を返すとします。私はこのコピーのアイデアに本当にこだわっています。助けてくれてありがとう
class Poly:
def __init__ (self, p):
self.a = p
self.deg= len(p) -1
if len(p) == 1 and p[0] == 0:
self.deg = -1
def evalPoly(self,x0):
''' evaluates the polynomial at value x'''
b=0
for coefficients in reversed(self.a):
b=b*x0+int(coefficients)
return b
def polyPrime(self):
'''replaces the coeffiecients of self with the coefficients
of the derivative polynomial '''
if self.deg == 0:
return np.zeroes(1,float), 0
else:
newdeg=self.deg-1
p=[i*self.a[i] for i in range(1,self.deg+1)]
p=str(p)[1: -1]
p=eval(p)
return p
def copy(self):
return Poly(self.a)
Poly オブジェクトのコピーを作成し、新しい Poly オブジェクトへの参照を返す方法に行き詰まっています。