質問編集履歴
1
MATLABの複数の方のプログラムのプロットする所で plot(t,data(2,N),'-.')になっていたので plot(t,out(2,N),'-.')に修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -158,7 +158,7 @@
|
|
158
158
|
|
159
159
|
hold on
|
160
160
|
|
161
|
-
plot(t,
|
161
|
+
plot(t,out(2,N),'-.')
|
162
162
|
|
163
163
|
hold on
|
164
164
|
|