Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道为什么在 Windows 7 64 位上使用 Octave 时会出现这个奇怪的错误:
当我ones(100:100)用来声明一个 100x100 的矩阵时。没问题。但是当我使用时:ones(10:100)我会有错误:
ones(100:100)
ones(10:100)
内存耗尽或请求的大小太大
如果我使用ones(10:15)我必须等待很长时间(大约 30 秒)才能得到答案。
ones(10:15)
请为我解释这个错误。
谢谢 :)
你的语法是错误的。要创建一个 mxn 矩阵,它应该是:
ones(m,n)
例如
ones(100,100)
或者
ones(10,15)