質問編集履歴

2

誤字の修正

2021/04/18 12:10

投稿

keisokukunn
keisokukunn

スコア9

test CHANGED
File without changes
test CHANGED
@@ -170,7 +170,7 @@
170
170
 
171
171
  plt.figure(figsize=(6,4))
172
172
 
173
- plt.plot(fq[:int(N/2)+1],Data[:int(N/2)+1],color=colorlist(0,j+1))
173
+ plt.plot(fq[:int(N/2)+1],Data[:int(N/2)+1],color=colorlist(range(1,j+1)))
174
174
 
175
175
  plt.title(str(n)+"回目")
176
176
 

1

誤字の修正および文章の修正

2021/04/18 12:10

投稿

keisokukunn
keisokukunn

スコア9

test CHANGED
File without changes
test CHANGED
@@ -13,6 +13,24 @@
13
13
  ### 発生している問題・エラーメッセージ
14
14
 
15
15
  ```
16
+
17
+ TypeError Traceback (most recent call last)
18
+
19
+ <ipython-input-106-3b91932838c2> in <module>
20
+
21
+ 61
22
+
23
+ 62 plt.figure(figsize=(6,4))
24
+
25
+ ---> 63 plt.plot(fq[:int(N/2)+1],Data[:int(N/2)+1],color=colorlist(range(1,j+1)))
26
+
27
+ 64 plt.title(str(n)+"回目")
28
+
29
+ 65 plt.xlabel("frequency[Hz]",fontsize=14)
30
+
31
+
32
+
33
+ TypeError: 'int' object is not callable
16
34
 
17
35
 
18
36