你好我試圖使用python我已經安裝了所需的模塊來運行該代碼,但它給我這個輸出相關的錯誤:我試圖運行這個python腳本,但它給了我sympy
Traceback (most recent call last):
File "sweep.py", line 62, in <module>
Bb_all = zeros((3,0))
File "C:\Python27\lib\site-packages\sympy\matrices\dense.py", line 1260, in ze
ros
return cls.zeros(r, c)
File "C:\Python27\lib\site-packages\sympy\matrices\dense.py", line 521, in zer
os
r = as_int(r)
File "C:\Python27\lib\site-packages\sympy\core\compatibility.py", line 406, in
as_int
raise ValueError('%s is not an integer' % n)
TypeError: not all arguments converted during string formatting
代碼的Github上:https://github.com/kai5z/Chladni-patterns
帖子所有培訓相關的代碼。 – Carcigenicate
歡迎來到StackOverflow。請閱讀並遵守幫助文檔中的發佈準則。 [最小,完整,可驗證的示例](http://stackoverflow.com/help/mcve)適用於此處。在發佈您的MCVE代碼並準確描述問題之前,我們無法爲您提供有效的幫助。 我們應該能夠將發佈的代碼粘貼到文本文件中,並重現您描述的問題。 – Prune