标签: octave
似乎我的Octave会话处于无限循环中,或者至少在我运行此代码时冻结
c = cos(pi/8) s = sin(pi/8) A = [c -s; s c] xy = [1;0] for i = 1:17 xy = A * xy plot(xy(1), xy(2)) hold on endfor
当代码运行时,我无法关闭任何窗口,必须强行关闭应用程序。