質問編集履歴
4
コードの変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -440,7 +440,7 @@
|
|
440
440
|
|
441
441
|
|
442
442
|
|
443
|
-
x = np.linspace(0, 10, 10000)
|
443
|
+
x = np.linspace(0, 10, 10000)
|
444
444
|
|
445
445
|
|
446
446
|
|
@@ -448,9 +448,9 @@
|
|
448
448
|
|
449
449
|
|
450
450
|
|
451
|
-
plt.plot(x, np.sin(x))
|
451
|
+
plt.plot(x, np.sin(x))
|
452
|
-
|
452
|
+
|
453
|
-
plt.plot(x, np.cos(x))
|
453
|
+
plt.plot(x, np.cos(x))
|
454
454
|
|
455
455
|
plt.show()
|
456
456
|
|
3
実験の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -458,6 +458,14 @@
|
|
458
458
|
|
459
459
|
```
|
460
460
|
|
461
|
-
簡単なグラフで
|
461
|
+
簡単なグラフを、別ファイルで作れば、グラフは表示できますが、
|
462
|
+
|
463
|
+
該当のコードに、このコードを書いた場合、グラフは表示されません。
|
464
|
+
|
465
|
+
何故、ファイルによって、plt.show()が表示できないのでしょうか。
|
466
|
+
|
467
|
+
(全て同じディレクトリ内で試しました。)
|
468
|
+
|
469
|
+
|
462
470
|
|
463
471
|
パイソンに詳しい方、どうか教えていただけないでしょうか。
|
2
コードの変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -334,9 +334,7 @@
|
|
334
334
|
|
335
335
|
print("--Visualizetion--")
|
336
336
|
|
337
|
-
|
337
|
+
plt.figure()
|
338
|
-
|
339
|
-
ax = plt.axes()
|
340
338
|
|
341
339
|
plt.subplot(2, 1, 1)
|
342
340
|
|
1
ダウンロード元のリンクの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,6 +16,20 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
+
このコードはOpenGoddardと呼ばれる、最適化問題に使われているコードだそうで、
|
20
|
+
|
21
|
+
https://github.com/istellartech/OpenGoddard
|
22
|
+
|
23
|
+
から、
|
24
|
+
|
25
|
+
$ pip install OpenGoddard
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
にて、ダウンロードをして使っています。
|
30
|
+
|
31
|
+
|
32
|
+
|
19
33
|
### 発生している問題・エラーメッセージ
|
20
34
|
|
21
35
|
|