2007-07-12から1日間の記事一覧

Pythonでlistにextend

Pythonでscipy.integrate.odeintの結果を一度ローカル変数へ保存した後, メンバ変数に追加するという関数を書いた.localList = scipy.integrate.odeint(...) self.memberList.extend( localList )すると, 呼び出すたびにself.memberListがextendする前に勝手…