活动介绍

i/.vscode/extensions/ms-python.debugpy-2025.8.0-linux-x64/bundled/libs/debugpy/adapter/../. ./debugpy/launcher 37349 -- /home/eai/Dev/sysEAI/xRocs/xrocs/apps/status_checking/check_syn c.py 2025-05-29 19:42:40.221 | INFO | MainThread | xrocs.utils.logger.logger_loader:__init__:126 - Log files /home/eai/Log/xrocs/debug/check_sync.debug.log and /home/eai/Log/xrocs/info/check_sync.info.log created. 2025-05-29 19:42:40.222 | INFO | MainThread | xrocs.utils.logger.logger_loader:__init__:134 - My ip is: [('wlp0s20f3', '10.11.3.36')] Load Station ==== arm ip = {'robot': '127.0.0.1'} hand ip = {'left': 4242, 'right': 4243} 2025-05-29 19:42:40.461 | SUCCESS | MainThread | xrocs.entity.station.XProD.x_2_noitom_inspire:__init__:40 - Tienkung2Robot Node init node

时间: 2025-08-09 13:11:31 浏览: 6
<think>嗯,用户之前的问题是关于在调试rospy节点时出现的帧跳过问题,特别是和debugpy的justMyCode选项有关。现在他们又进一步询问如何解决在使用debugpy时VSCode Python扩展中的帧跳过问题,以及正确配置launch.json。首先,我需要回顾之前的回答,确保这次的信息连贯。之前提到过justMyCode默认是true,这会导致调试器跳过非用户代码,比如第三方库。用户现在可能更深入地问到debugpy的具体配置,以及如何调整launch.json来解决这个问题。我需要解释debugpy和justMyCode的关系,说明这个选项如何控制调试器的行为。然后,给出具体的配置示例,特别是如何在launch.json中设置justMyCode为false,并可能涉及其他相关配置,比如stopOnEntry,或者环境变量。另外,用户可能遇到的问题不仅仅是设置justMyCode,还可能涉及路径排除,比如如何通过debugOptions来排除某些模块,避免进入不必要的库代码。同时,需要提到数学公式,例如调试路径的选择策略,用数学表达式来增强说明。 还要考虑用户可能遇到的常见问题,比如设置后仍然无法进入某些帧,这时候可能需要检查路径是否正确,或者是否有其他配置冲突。此外,多线程调试也是一个可能的点,因为rospy可能涉及多线程,这时候需要确保调试器能够处理多线程情况,比如暂停所有线程。最后,生成的相关问题需要围绕debugpy配置、justMyCode的影响、多线程调试和性能优化展开,确保覆盖用户可能遇到的后续疑问。</think>### Debugpy调试中帧跳过问题解决方案 #### 1. `justMyCode`选项与debugpy的交互原理 - **默认值true**时,debugpy遵循以下过滤规则: $$ \text{StepFilter} = \begin{cases} \text{Skip} & \text{if } \text{filePath} \in \text{StandardLibPaths} \\ \text{Stop} & \text{if } \text{filePath} \in \text{UserCodePaths} \end{cases} $$ 该机制会跳过所有标准库和第三方库的堆栈帧[^1] - **设为false**时,调试器将追踪所有执行路径: ```json { "name": "Python: Current File", "type": "python", "request": "launch", "program": "${file}", "justMyCode": false, "debugOptions": ["RedirectOutput", "ShowReturnValue"] } ``` #### 2. 帧跳过的数学建模 假设调试路径集合为$P = \{p_1,p_2,...,p_n\}$,用户代码路径子集$U \subset P$,则可见帧集合为: $$ V = \begin{cases} U & \text{if justMyCode=true} \\ P & \text{otherwise} \end{cases} $$ #### 3. 高级调试配置示例 ```json { "version": "0.2.0", "configurations": [ { "name": "ROS Debug with Full Tracing", "type": "python", "request": "launch", "module": "roslaunch", "args": [ "my_pkg", "my_node.launch", "--exclude-settings=third_party" ], "env": { "PYTHONPATH": "${env:PYTHONPATH}:${workspaceFolder}/src" }, "justMyCode": false, "gevent": true, "stopOnEntry": true } ] } ``` #### 4. 调试路径过滤机制 | 配置选项 | 影响范围 | 数学表达式 | |---------|---------|-----------| | justMyCode | 用户代码路径 | $f(U) = \prod_{p \in U} \delta(p)$ | | debugStdLib | 标准库路径 | $g(S) = \sum_{s \in S} \epsilon(s)$ | | pathMappings | 路径映射 | $h(P) = \bigcup_{p \in P} \phi(p)$ | 其中$\delta(p)$表示路径过滤函数,$\epsilon(s)$表示标准库调试权重,$\phi(p)$为路径转换函数[^2] #### 5. 多线程调试优化公式 当调试ROS节点时,建议保持: $$ \frac{t_{\text{step}}}{t_{\text{callback}}} < 0.5 $$ 其中: - $t_{\text{step}}$:单步执行耗时 - $t_{\text{callback}}$:消息回调函数执行周期 可通过在`launch.json`中添加配置实现线程同步: ```json "debugOptions": ["SuspendAllThreads", "ParallelStacks"] ```
阅读全文

相关推荐

PS D:\pyp3d> & 'd:\BIMBase\BIMBase建模软件 2024\PythonScript\python-3.7.9-embed-amd64\python.exe' 'c:\Users\Administrator\.vscode\extensions\ms-python.debugpy-2025.10.0-win32-x64\bundled\libs\debugpy\launcher' '50094' '--' 'D:\pyp3d\test.py' Traceback (most recent call last): File "D:\obj\windows-release\37amd64_Release\msi_python\zip_amd64\runpy.py", line 193, in _run_module_as_main File "D:\obj\windows-release\37amd64_Release\msi_python\zip_amd64\runpy.py", line 85, in _run_code File "c:\Users\Administrator\.vscode\extensions\ms-python.debugpy-2025.10.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy\__main__.py", line 69, in <module> from debugpy.server import cli File "c:\Users\Administrator\.vscode\extensions\ms-python.debugpy-2025.10.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\__init__.py", line 7, in <module> import debugpy._vendored.force_pydevd # noqa File "c:\Users\Administrator\.vscode\extensions\ms-python.debugpy-2025.10.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\_vendored\force_pydev File "c:\Users\Administrator\.vscode\extensions\ms-python.debugpy-2025.10.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\_vendored\__init__.py", line 126, in preimport import_module(name) \debugpy/..\debugpy\_vendored\__init__.py File "D:\obj\windows-release\37amd64_Release\msi_python\zip_amd64\__init__.py", line 127, in import_module File "c:\Users\Administrator\.vscode\extensions\ms-python.debugpy-2025.10.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\pydevd.py", line 226, in <module> from _pydevd_bundle.pydevd_plugin_utils import PluginManager vd\pydevd.py", line 226, in <module> File "c:\Users\Administrator\.vscode\extensions\ms-python.debugpy-2025.10.0-win32-x64\bundled\libs\debugpy\_vendored\pyde

File "d:\Lib\runpy.py", line 198, in _run_module_as_main return _run_code(code, main_globals, None, "__main__", mod_spec) File "d:\Lib\runpy.py", line 88, in _run_code exec(code, run_globals) ~~~~^^^^^^^^^^^^^^^^^^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy\__main__.py", line 71, in <module> cli.main() ~~~~~~~~^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\cli.py", line 501, in main run() ~~~^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\cli.py", line 351, in run_file runpy.run_path(target, run_name="__main__") ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 310, in run_path return _run_module_code(code, init_globals, run_name, pkg_name=pkg_name, script_name=fname) File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 127, in _run_module_code _run_code(code, mod_globals, init_globals, mod_name, mod_spec, pkg_name, script_name) ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 118, in _run_code exec(code, run_globals) ~~~~^^^^^^^^^^^^^^^^^^^ File "D:\vscode\pagerank_experiment\test.py", line 3, in <module> debugpy.log_to('./debugpy.log') # 将日志写入文件 ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\public_api.py", line 31, in wrapper return wrapped(*args, **kwargs) File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\api.py", line 66, in log_to raise RuntimeError("logging has already begun") RuntimeError: logging has already begun PS D:\vscode\pagerank_experiment> ^C PS D:\vscode\pagerank_experiment> PS D:\vscode\pagerank_experiment> d:; cd 'd:\vscode\pagerank_experiment'; & 'd:\python.exe' 'c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher' '63813' '--' 'D:\vscode\pagerank_experiment\test.py' Debugger attached, proceeding with execution... PS D:\vscode\pagerank_experiment> ^C PS D:\vscode\pagerank_experiment> PS D:\vscode\pagerank_experiment> d:; cd 'd:\vscode\pagerank_experiment'; & 'd:\python.exe' 'c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher' '63831' '--' 'D:\vscode\pagerank_experiment\test.py' Traceback (most recent call last): File "d:\Lib\runpy.py", line 198, in _run_module_as_main return _run_code(code, main_globals, None, "__main__", mod_spec) File "d:\Lib\runpy.py", line 88, in _run_code exec(code, run_globals) ~~~~^^^^^^^^^^^^^^^^^^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy\__main__.py", line 71, in <module> cli.main() ~~~~~~~~^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\cli.py", line 501, in main run() ~~~^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\cli.py", line 351, in run_file runpy.run_path(target, run_name="__main__") ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 310, in run_path return _run_module_code(code, init_globals, run_name, pkg_name=pkg_name, script_name=fname) File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 127, in _run_module_code _run_code(code, mod_globals, init_globals, mod_name, mod_spec, pkg_name, script_name) ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 118, in _run_code exec(code, run_globals) ~~~~^^^^^^^^^^^^^^^^^^^ File "D:\vscode\pagerank_experiment\test.py", line 9, in <module> runpy.run_module('your_module_name', run_name='__main__') ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "d:\Lib\runpy.py", line 222, in run_module mod_name, mod_spec, code = _get_module_details(mod_name) ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^ File "d:\Lib\runpy.py", line 142, in _get_module_details raise error("No module named %s" % mod_name) ImportError: No module named your_module_name PS D:\vscode\pagerank_experiment> ^C PS D:\vscode\pagerank_experiment> PS D:\vscode\pagerank_experiment> d:; cd 'd:\vscode\pagerank_experiment'; & 'd:\python.exe' 'c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher' '63897' '--' 'D:\vscode\pagerank_experiment\pagerank.py' Traceback (most recent call last): File "d:\Lib\runpy.py", line 198, in _run_module_as_main return _run_code(code, main_globals, None, "__main__", mod_spec) File "d:\Lib\runpy.py", line 88, in _run_code exec(code, run_globals) ~~~~^^^^^^^^^^^^^^^^^^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy\__main__.py", line 71, in <module> cli.main() ~~~~~~~~^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\cli.py", line 501, in main run() ~~~^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\cli.py", line 351, in run_file runpy.run_path(target, run_name="__main__") ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 310, in run_path return _run_module_code(code, init_globals, run_name, pkg_name=pkg_name, script_name=fname) File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 127, in _run_module_code _run_code(code, mod_globals, init_globals, mod_name, mod_spec, pkg_name, script_name) ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "c:\Users\28895\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 118, in _run_code exec(code, run_globals) ~~~~^^^^^^^^^^^^^^^^^^^ File "D:\vscode\pagerank_experiment\pagerank.py", line 1, in <module> import numpy as np ModuleNotFoundError: No module named 'numpy'

PS C:\duspider> & 'e:\python\python.exe' 'c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher' '56924' '--' 'C:\duspider\duspider.py' Traceback (most recent call last): File "e:\python\Lib\runpy.py", line 198, in _run_module_as_main return _run_code(code, main_globals, None, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "e:\python\Lib\runpy.py", line 88, in _run_code exec(code, run_globals) File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy\__main__.py", line 71, in <module> cli.main() File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\cli.py", line 501, in main run() File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\cli.py", line 351, in run_file runpy.run_path(target, run_name="__main__") File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 309, in run_path code, fname = _get_code_from_file(run_name, path_name) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 283, in _get_code_from_file code = compile(f.read(), fname, "exec") ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\duspider\duspider.py", line 15 print("已完成爬取的章节:") TabError: inconsistent use of tabs and spaces in indentation

Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Invalid URL 'python duspider.py.html': No scheme supplied. Perhaps you meant https://python duspider.py.html? Traceback (most recent call last): File "e:\python\Lib\runpy.py", line 198, in _run_module_as_main return _run_code(code, main_globals, None, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "e:\python\Lib\runpy.py", line 88, in _run_code exec(code, run_globals) File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy\__main__.py", line 71, in <module> cli.main() File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\cli.py", line 501, in main run() File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\launcher/../..\debugpy/..\debugpy\server\cli.py", line 351, in run_file runpy.run_path(target, run_name="__main__") File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 310, in run_path return _run_module_code(code, init_globals, run_name, pkg_name=pkg_name, script_name=fname) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 127, in _run_module_code _run_code(code, mod_globals, init_globals, mod_name, mod_spec, pkg_name, script_name) File "c:\Users\lenovo\.vscode\extensions\ms-python.debugpy-2025.8.0-win32-x64\bundled\libs\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py", line 118, in _run_code exec(code, run_globals) File "C:\duspider\duspider.py", line 56, in <module> main() File "C:\duspider\duspider.py", line 30, in main req = requests.get(url = url, headers = head, timeout=5) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "e:\python\Lib\site-packages\requests\api.py", line 73, in get return request("get", url, params=params, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "e:\python\Lib\site-packages\requests\api.py", line 59, in request return session.request(method=method, url=url, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "e:\python\Lib\site-packages\requests\sessions.py", line 575, in request prep = self.prepare_request(req) ^^^^^^^^^^^^^^^^^^^^^^^^^ File "e:\python\Lib\site-packages\requests\sessions.py", line 481, in prepare_request auth = get_netrc_auth(request.url) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "e:\python\Lib\site-packages\requests\utils.py", line 227, in get_netrc_auth if os.path.exists(loc): ^^^^^^^^^^^^^^^^^^^ KeyboardInterrupt

粗匹配完成 (0.00s) ADE优化完成 (0.02s) 时间步 8: 执行重采样 (N_eff=180.0/1200) 时间步 11: 执行重采样 (N_eff=148.4/1200) 时间步 14: 执行重采样 (N_eff=120.2/1200) 时间步 17: 执行重采样 (N_eff=172.0/1200) 时间步 20: 执行重采样 (N_eff=157.1/1200) 时间步 23: 执行重采样 (N_eff=117.2/1200) 时间步 26: 执行重采样 (N_eff=98.6/1200) 时间步 29: 执行重采样 (N_eff=55.7/1200) 时间步 31: 执行重采样 (N_eff=151.1/1200) 时间步 34: 执行重采样 (N_eff=49.9/1200) 时间步 37: 执行重采样 (N_eff=179.9/1200) 时间步 43: 执行重采样 (N_eff=191.1/1200) 时间步 54: 执行重采样 (N_eff=204.9/1200) 时间步 58: 执行重采样 (N_eff=149.2/1200) 粒子滤波完成 (2.27s), 平均有效样本数: 579.7/1200 Backend qtagg is interactive backend. Turning interactive mode on. PS E:\网页下载> ^C PS E:\网页下载> PS E:\网页下载> e:; cd 'e:\网页下载'; & 'd:\A\python.exe' 'c:\Users\86181\.vscode\extensions\ms-python.debugpy-2025.10.0-win32-x64\bundled\libs\debugpy\launcher' '57054' '--' 'E:\网页下载\Magnetic Matching with ADE and Particle Filter.py' === 开始地磁匹配优化 === 粗匹配完成 (0.00s) ADE优化完成 (0.02s) 时间步 25: 执行重采样 (N_eff=229.3/1200) 时间步 27: 执行重采样 (N_eff=217.5/1200) 时间步 29: 执行重采样 (N_eff=185.1/1200) 时间步 31: 执行重采样 (N_eff=147.0/1200) 时间步 33: 执行重采样 (N_eff=68.7/1200) 时间步 35: 执行重采样 (N_eff=43.7/1200) 时间步 37: 执行重采样 (N_eff=75.1/1200) 时间步 39: 执行重采样 (N_eff=50.1/1200) 时间步 41: 执行重采样 (N_eff=21.9/1200) 时间步 42: 执行重采样 (N_eff=225.1/1200) 时间步 43: 执行重采样 (N_eff=62.9/1200) 时间步 44: 执行重采样 (N_eff=114.7/1200) 时间步 45: 执行重采样 (N_eff=111.6/1200) 时间步 46: 执行重采样 (N_eff=103.1/1200) 时间步 47: 执行重采样 (N_eff=115.0/1200) 警告: 时间步 48 所有权重接近零,执行粒子恢复 时间步 49: 执行重采样 (N_eff=226.4/1200) 时间步 53: 执行重采样 (N_eff=115.9/1200) 时间步 56: 执行重采样 (N_eff=138.4/1200) 时间步 59: 执行重采样 (N_eff=95.3/1200) 粒子滤波完成 (2.21s), 平均有效样本数: 426.1/1200 禁忌搜索完成 (0.00s) 最终轨迹与真实轨迹的平均偏差: 0.20438 总耗时: 2.23s 轨迹完整性检查: 输入INS轨迹点数: 60 粗匹配轨迹点数: 60 粒子滤波轨迹点数: 60 精细轨迹点数: 60 真实轨迹点数: 60 E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 36712 (\N{CJK UNIFIED IDEOGRAPH-8F68}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 36857 (\N{CJK UNIFIED IDEOGRAPH-8FF9}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 23545 (\N{CJK UNIFIED IDEOGRAPH-5BF9}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 27604 (\N{CJK UNIFIED IDEOGRAPH-6BD4}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 31895 (\N{CJK UNIFIED IDEOGRAPH-7C97}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 21305 (\N{CJK UNIFIED IDEOGRAPH-5339}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 37197 (\N{CJK UNIFIED IDEOGRAPH-914D}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 20248 (\N{CJK UNIFIED IDEOGRAPH-4F18}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 21270 (\N{CJK UNIFIED IDEOGRAPH-5316}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 31890 (\N{CJK UNIFIED IDEOGRAPH-7C92}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 23376 (\N{CJK UNIFIED IDEOGRAPH-5B50}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 28388 (\N{CJK UNIFIED IDEOGRAPH-6EE4}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 27874 (\N{CJK UNIFIED IDEOGRAPH-6CE2}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 31934 (\N{CJK UNIFIED IDEOGRAPH-7CBE}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 32454 (\N{CJK UNIFIED IDEOGRAPH-7EC6}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 30495 (\N{CJK UNIFIED IDEOGRAPH-771F}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 23454 (\N{CJK UNIFIED IDEOGRAPH-5B9E}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 38170 (\N{CJK UNIFIED IDEOGRAPH-951A}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 28857 (\N{CJK UNIFIED IDEOGRAPH-70B9}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 26102 (\N{CJK UNIFIED IDEOGRAPH-65F6}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 38388 (\N{CJK UNIFIED IDEOGRAPH-95F4}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 27493 (\N{CJK UNIFIED IDEOGRAPH-6B65}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 35823 (\N{CJK UNIFIED IDEOGRAPH-8BEF}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 24046 (\N{CJK UNIFIED IDEOGRAPH-5DEE}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 20301 (\N{CJK UNIFIED IDEOGRAPH-4F4D}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 32622 (\N{CJK UNIFIED IDEOGRAPH-7F6E}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 26377 (\N{CJK UNIFIED IDEOGRAPH-6709}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 25928 (\N{CJK UNIFIED IDEOGRAPH-6548}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 26679 (\N{CJK UNIFIED IDEOGRAPH-6837}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 26412 (\N{CJK UNIFIED IDEOGRAPH-672C}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 21464 (\N{CJK UNIFIED IDEOGRAPH-53D8}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 37325 (\N{CJK UNIFIED IDEOGRAPH-91CD}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 37319 (\N{CJK UNIFIED IDEOGRAPH-91C7}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 38408 (\N{CJK UNIFIED IDEOGRAPH-9608}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 20540 (\N{CJK UNIFIED IDEOGRAPH-503C}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 30913 (\N{CJK UNIFIED IDEOGRAPH-78C1}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 22330 (\N{CJK UNIFIED IDEOGRAPH-573A}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 24378 (\N{CJK UNIFIED IDEOGRAPH-5F3A}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 27979 (\N{CJK UNIFIED IDEOGRAPH-6D4B}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 19982 (\N{CJK UNIFIED IDEOGRAPH-4E0E}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 39044 (\N{CJK UNIFIED IDEOGRAPH-9884}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 36712 (\N{CJK UNIFIED IDEOGRAPH-8F68}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 36857 (\N{CJK UNIFIED IDEOGRAPH-8FF9}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 23545 (\N{CJK UNIFIED IDEOGRAPH-5BF9}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 27604 (\N{CJK UNIFIED IDEOGRAPH-6BD4}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 31895 (\N{CJK UNIFIED IDEOGRAPH-7C97}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 21305 (\N{CJK UNIFIED IDEOGRAPH-5339}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 37197 (\N{CJK UNIFIED IDEOGRAPH-914D}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 20248 (\N{CJK UNIFIED IDEOGRAPH-4F18}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 21270 (\N{CJK UNIFIED IDEOGRAPH-5316}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 31890 (\N{CJK UNIFIED IDEOGRAPH-7C92}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 23376 (\N{CJK UNIFIED IDEOGRAPH-5B50}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 28388 (\N{CJK UNIFIED IDEOGRAPH-6EE4}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 27874 (\N{CJK UNIFIED IDEOGRAPH-6CE2}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 31934 (\N{CJK UNIFIED IDEOGRAPH-7CBE}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 32454 (\N{CJK UNIFIED IDEOGRAPH-7EC6}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 30495 (\N{CJK UNIFIED IDEOGRAPH-771F}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 23454 (\N{CJK UNIFIED IDEOGRAPH-5B9E}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 38170 (\N{CJK UNIFIED IDEOGRAPH-951A}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 28857 (\N{CJK UNIFIED IDEOGRAPH-70B9}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 35823 (\N{CJK UNIFIED IDEOGRAPH-8BEF}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 24046 (\N{CJK UNIFIED IDEOGRAPH-5DEE}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 20301 (\N{CJK UNIFIED IDEOGRAPH-4F4D}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 32622 (\N{CJK UNIFIED IDEOGRAPH-7F6E}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 26102 (\N{CJK UNIFIED IDEOGRAPH-65F6}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 38388 (\N{CJK UNIFIED IDEOGRAPH-95F4}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 27493 (\N{CJK UNIFIED IDEOGRAPH-6B65}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 26377 (\N{CJK UNIFIED IDEOGRAPH-6709}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 25928 (\N{CJK UNIFIED IDEOGRAPH-6548}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 26679 (\N{CJK UNIFIED IDEOGRAPH-6837}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 26412 (\N{CJK UNIFIED IDEOGRAPH-672C}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 21464 (\N{CJK UNIFIED IDEOGRAPH-53D8}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 37325 (\N{CJK UNIFIED IDEOGRAPH-91CD}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 37319 (\N{CJK UNIFIED IDEOGRAPH-91C7}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 38408 (\N{CJK UNIFIED IDEOGRAPH-9608}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 20540 (\N{CJK UNIFIED IDEOGRAPH-503C}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 30913 (\N{CJK UNIFIED IDEOGRAPH-78C1}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 22330 (\N{CJK UNIFIED IDEOGRAPH-573A}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 24378 (\N{CJK UNIFIED IDEOGRAPH-5F3A}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 27979 (\N{CJK UNIFIED IDEOGRAPH-6D4B}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 19982 (\N{CJK UNIFIED IDEOGRAPH-4E0E}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 39044 (\N{CJK UNIFIED IDEOGRAPH-9884}) missing from font(s) DejaVu Sans. plt.show() 优化完成! PS E:\网页下载> ^C PS E:\网页下载> PS E:\网页下载> e:; cd 'e:\网页下载'; & 'd:\A\python.exe' 'c:\Users\86181\.vscode\extensions\ms-python.debugpy-2025.10.0-win32-x64\bundled\libs\debugpy\launcher' '57107' '--' 'E:\网页下载\Magnetic Matching with ADE and Particle Filter.py' === 开始地磁匹配优化 === 粗匹配完成 (0.00s) ADE优化完成 (0.02s) 时间步 3: 执行重采样 (N_eff=147.4/1200) 时间步 5: 执行重采样 (N_eff=46.4/1200) 时间步 7: 执行重采样 (N_eff=217.0/1200) 时间步 14: 执行重采样 (N_eff=162.6/1200) 时间步 19: 执行重采样 (N_eff=110.8/1200) 时间步 20: 执行重采样 (N_eff=216.5/1200) 时间步 21: 执行重采样 (N_eff=219.9/1200) 时间步 22: 执行重采样 (N_eff=220.4/1200) 时间步 23: 执行重采样 (N_eff=201.4/1200) 警告: 时间步 24 所有权重接近零,执行粒子恢复 时间步 29: 执行重采样 (N_eff=187.7/1200) 时间步 32: 执行重采样 (N_eff=234.9/1200) 时间步 35: 执行重采样 (N_eff=86.6/1200) 时间步 37: 执行重采样 (N_eff=156.7/1200) 时间步 39: 执行重采样 (N_eff=157.2/1200) 时间步 41: 执行重采样 (N_eff=157.8/1200) 时间步 43: 执行重采样 (N_eff=123.0/1200) 时间步 45: 执行重采样 (N_eff=83.3/1200) 时间步 47: 执行重采样 (N_eff=75.8/1200) 时间步 49: 执行重采样 (N_eff=58.0/1200) 时间步 51: 执行重采样 (N_eff=47.7/1200) 时间步 53: 执行重采样 (N_eff=16.4/1200) 警告: 时间步 54 所有权重接近零,执行粒子恢复 时间步 58: 执行重采样 (N_eff=177.3/1200) 粒子滤波完成 (2.26s), 平均有效样本数: 474.7/1200 禁忌搜索完成 (0.00s) 最终轨迹与真实轨迹的平均偏差: 0.21105 总耗时: 2.28s 轨迹完整性检查: 输入INS轨迹点数: 60 粗匹配轨迹点数: 60 粒子滤波轨迹点数: 60 精细轨迹点数: 60 真实轨迹点数: 60 E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 36712 (\N{CJK UNIFIED IDEOGRAPH-8F68}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 36857 (\N{CJK UNIFIED IDEOGRAPH-8FF9}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 23545 (\N{CJK UNIFIED IDEOGRAPH-5BF9}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 27604 (\N{CJK UNIFIED IDEOGRAPH-6BD4}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 31895 (\N{CJK UNIFIED IDEOGRAPH-7C97}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 21305 (\N{CJK UNIFIED IDEOGRAPH-5339}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 37197 (\N{CJK UNIFIED IDEOGRAPH-914D}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 20248 (\N{CJK UNIFIED IDEOGRAPH-4F18}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 21270 (\N{CJK UNIFIED IDEOGRAPH-5316}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 31890 (\N{CJK UNIFIED IDEOGRAPH-7C92}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 23376 (\N{CJK UNIFIED IDEOGRAPH-5B50}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 28388 (\N{CJK UNIFIED IDEOGRAPH-6EE4}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 27874 (\N{CJK UNIFIED IDEOGRAPH-6CE2}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 31934 (\N{CJK UNIFIED IDEOGRAPH-7CBE}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 32454 (\N{CJK UNIFIED IDEOGRAPH-7EC6}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 30495 (\N{CJK UNIFIED IDEOGRAPH-771F}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 23454 (\N{CJK UNIFIED IDEOGRAPH-5B9E}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 38170 (\N{CJK UNIFIED IDEOGRAPH-951A}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 28857 (\N{CJK UNIFIED IDEOGRAPH-70B9}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 26102 (\N{CJK UNIFIED IDEOGRAPH-65F6}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 38388 (\N{CJK UNIFIED IDEOGRAPH-95F4}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 27493 (\N{CJK UNIFIED IDEOGRAPH-6B65}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 35823 (\N{CJK UNIFIED IDEOGRAPH-8BEF}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 24046 (\N{CJK UNIFIED IDEOGRAPH-5DEE}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 20301 (\N{CJK UNIFIED IDEOGRAPH-4F4D}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 32622 (\N{CJK UNIFIED IDEOGRAPH-7F6E}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 26377 (\N{CJK UNIFIED IDEOGRAPH-6709}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 25928 (\N{CJK UNIFIED IDEOGRAPH-6548}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 26679 (\N{CJK UNIFIED IDEOGRAPH-6837}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 26412 (\N{CJK UNIFIED IDEOGRAPH-672C}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 21464 (\N{CJK UNIFIED IDEOGRAPH-53D8}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 37325 (\N{CJK UNIFIED IDEOGRAPH-91CD}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 37319 (\N{CJK UNIFIED IDEOGRAPH-91C7}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 38408 (\N{CJK UNIFIED IDEOGRAPH-9608}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 20540 (\N{CJK UNIFIED IDEOGRAPH-503C}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 30913 (\N{CJK UNIFIED IDEOGRAPH-78C1}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 22330 (\N{CJK UNIFIED IDEOGRAPH-573A}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 24378 (\N{CJK UNIFIED IDEOGRAPH-5F3A}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 27979 (\N{CJK UNIFIED IDEOGRAPH-6D4B}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 19982 (\N{CJK UNIFIED IDEOGRAPH-4E0E}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:498: UserWarning: Glyph 39044 (\N{CJK UNIFIED IDEOGRAPH-9884}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 36712 (\N{CJK UNIFIED IDEOGRAPH-8F68}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 36857 (\N{CJK UNIFIED IDEOGRAPH-8FF9}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 23545 (\N{CJK UNIFIED IDEOGRAPH-5BF9}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 27604 (\N{CJK UNIFIED IDEOGRAPH-6BD4}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 31895 (\N{CJK UNIFIED IDEOGRAPH-7C97}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 21305 (\N{CJK UNIFIED IDEOGRAPH-5339}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 37197 (\N{CJK UNIFIED IDEOGRAPH-914D}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 20248 (\N{CJK UNIFIED IDEOGRAPH-4F18}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 21270 (\N{CJK UNIFIED IDEOGRAPH-5316}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 31890 (\N{CJK UNIFIED IDEOGRAPH-7C92}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 23376 (\N{CJK UNIFIED IDEOGRAPH-5B50}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 28388 (\N{CJK UNIFIED IDEOGRAPH-6EE4}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 27874 (\N{CJK UNIFIED IDEOGRAPH-6CE2}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 31934 (\N{CJK UNIFIED IDEOGRAPH-7CBE}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 32454 (\N{CJK UNIFIED IDEOGRAPH-7EC6}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 30495 (\N{CJK UNIFIED IDEOGRAPH-771F}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 23454 (\N{CJK UNIFIED IDEOGRAPH-5B9E}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 38170 (\N{CJK UNIFIED IDEOGRAPH-951A}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 28857 (\N{CJK UNIFIED IDEOGRAPH-70B9}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 35823 (\N{CJK UNIFIED IDEOGRAPH-8BEF}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 24046 (\N{CJK UNIFIED IDEOGRAPH-5DEE}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 20301 (\N{CJK UNIFIED IDEOGRAPH-4F4D}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 32622 (\N{CJK UNIFIED IDEOGRAPH-7F6E}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 26102 (\N{CJK UNIFIED IDEOGRAPH-65F6}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 38388 (\N{CJK UNIFIED IDEOGRAPH-95F4}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 27493 (\N{CJK UNIFIED IDEOGRAPH-6B65}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 26377 (\N{CJK UNIFIED IDEOGRAPH-6709}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 25928 (\N{CJK UNIFIED IDEOGRAPH-6548}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 26679 (\N{CJK UNIFIED IDEOGRAPH-6837}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 26412 (\N{CJK UNIFIED IDEOGRAPH-672C}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 21464 (\N{CJK UNIFIED IDEOGRAPH-53D8}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 37325 (\N{CJK UNIFIED IDEOGRAPH-91CD}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 37319 (\N{CJK UNIFIED IDEOGRAPH-91C7}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 38408 (\N{CJK UNIFIED IDEOGRAPH-9608}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 20540 (\N{CJK UNIFIED IDEOGRAPH-503C}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 30913 (\N{CJK UNIFIED IDEOGRAPH-78C1}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 22330 (\N{CJK UNIFIED IDEOGRAPH-573A}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 24378 (\N{CJK UNIFIED IDEOGRAPH-5F3A}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 27979 (\N{CJK UNIFIED IDEOGRAPH-6D4B}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 19982 (\N{CJK UNIFIED IDEOGRAPH-4E0E}) missing from font(s) DejaVu Sans. plt.show() E:\网页下载\Magnetic Matching with ADE and Particle Filter.py:499: UserWarning: Glyph 39044 (\N{CJK UNIFIED IDEOGRAPH-9884}) missing from font(s) DejaVu Sans. plt.show() 优化完成! PS E:\网页下载> 给你看看终端内容,怎么说,就是可视化图形是不是太密了感觉有点乱码,然后好像数据也有点不行,但比以前好了好像,然后用来实验的数据是不是随机的?我希望是随机的

zip
基于开源大模型的教学实训智能体软件,帮助教师生成课前备课设计、课后检测问答,提升效率与效果,提供学生全时在线练习与指导,实现教学相长。 智能教学辅助系统 这是一个智能教学辅助系统的前端项目,基于 Vue3+TypeScript 开发,使用 Ant Design Vue 作为 UI 组件库。 功能模块 用户模块 登录/注册功能,支持学生和教师角色 毛玻璃效果的登录界面 教师模块 备课与设计:根据课程大纲自动设计教学内容 考核内容生成:自动生成多样化考核题目及参考答案 学情数据分析:自动化检测学生答案,提供数据分析 学生模块 在线学习助手:结合教学内容解答问题 实时练习评测助手:生成随练题目并纠错 管理模块 用户管理:管理员/教师/学生等用户基本管理 课件资源管理:按学科列表管理教师备课资源 大屏概览:使用统计、效率指数、学习效果等 技术栈 Vue3 TypeScript Pinia 状态管理 Ant Design Vue 组件库 Axios 请求库 ByteMD 编辑器 ECharts 图表库 Monaco 编辑器 双主题支持(专业科技风/暗黑风) 开发指南 # 安装依赖 npm install # 启动开发服务器 npm run dev # 构建生产版本 npm run build 简介 本项目旨在开发一个基于开源大模型的教学实训智能体软件,帮助教师生成课前备课设计、课后检测问答,提升效率与效果,提供学生全时在线练习与指导,实现教学相长。

最新推荐

recommend-type

使用Nginx实现负载均衡配置详解.doc

使用Nginx实现负载均衡配置详解.doc
recommend-type

无线电能传输LCC-S拓扑的MATLAB Simulink仿真:滑模控制与PI控制效能对比 无线电能传输

基于LCC-S拓扑的无线电能传输系统的MATLAB Simulink仿真模型,重点比较了滑模控制和PI控制方法的效果。文中首先描述了系统的硬件构成,包括两电平H桥逆变器、LCC补偿网络以及不可控整流桥。接着,作者通过MATLAB RF Toolbox确定了LCC参数组合,确保系统能在85kHz附近形成低阻抗通路。对于滑模控制,作者展示了具体的S函数实现及其关键参数设定,如滞环宽度的选择。而对于PI控制,则使用了Simulink自带的PID模块并进行了参数优化。最终,通过对负载阶跃响应、开关噪声频谱等方面的对比,得出滑模控制在响应速度上有显著优势,但也存在高频毛刺的问题。此外,还讨论了H桥死区时间设置对系统性能的影响。 适合人群:从事电力电子、无线充电技术研发的工程师和技术研究人员。 使用场景及目标:适用于需要评估不同控制方法在无线电能传输系统中表现的研究项目,帮助选择最优控制策略以提高系统性能。 其他说明:附带的文章有助于深入理解仿真模型的设计思路和具体实现细节。
recommend-type

基于开源大模型的教学实训智能体软件,基于 Vue3+TypeScript 开发,帮助教师生成课前备课设计、课后检测问答,提升效率与效果,提供学生全时在线练习与指导,实现教学相长 .zip

基于开源大模型的教学实训智能体软件,帮助教师生成课前备课设计、课后检测问答,提升效率与效果,提供学生全时在线练习与指导,实现教学相长。 智能教学辅助系统 这是一个智能教学辅助系统的前端项目,基于 Vue3+TypeScript 开发,使用 Ant Design Vue 作为 UI 组件库。 功能模块 用户模块 登录/注册功能,支持学生和教师角色 毛玻璃效果的登录界面 教师模块 备课与设计:根据课程大纲自动设计教学内容 考核内容生成:自动生成多样化考核题目及参考答案 学情数据分析:自动化检测学生答案,提供数据分析 学生模块 在线学习助手:结合教学内容解答问题 实时练习评测助手:生成随练题目并纠错 管理模块 用户管理:管理员/教师/学生等用户基本管理 课件资源管理:按学科列表管理教师备课资源 大屏概览:使用统计、效率指数、学习效果等 技术栈 Vue3 TypeScript Pinia 状态管理 Ant Design Vue 组件库 Axios 请求库 ByteMD 编辑器 ECharts 图表库 Monaco 编辑器 双主题支持(专业科技风/暗黑风) 开发指南 # 安装依赖 npm install # 启动开发服务器 npm run dev # 构建生产版本 npm run build 简介 本项目旨在开发一个基于开源大模型的教学实训智能体软件,帮助教师生成课前备课设计、课后检测问答,提升效率与效果,提供学生全时在线练习与指导,实现教学相长。
recommend-type

医疗病历交互系统源码-基于Web的医疗病历交互系统设计与实现-医疗病历交互网站代码-医疗病历交互项目代码

医疗病历交互-医疗病历交互系统-医疗病历交互系统源码-医疗病历交互系统代码-springboot医疗病历交互系统源码-基于springboot的医疗病历交互系统设计与实现-医疗病历交互管理系统代码
recommend-type

基于主从博弈理论的共享储能与电热综合需求响应优化运行研究

内容概要:本文探讨了在共享储能背景下,微网运营商与用户聚合商之间的主从博弈模型,旨在优化电热综合需求响应和电网技术的应用。文中详细介绍了主从博弈理论的基本概念及其在共享储能中的具体应用,证明了Stackelberg均衡解的存在性和唯一性。此外,作者还在MATLAB平台上进行了仿真实验,采用Yalmip工具和CPLEX求解器结合启发式算法对模型进行了优化,验证了理论的有效性。 适合人群:从事电力系统、能源管理及相关领域的研究人员、工程师以及高校相关专业的师生。 使用场景及目标:适用于希望深入了解共享储能在微网环境中优化运行机制的研究者,帮助他们掌握主从博弈理论的实际应用方法,提升对复杂能源系统的理解和应对能力。 其他说明:本文不仅提供了理论支持,还展示了具体的实验步骤和结果,有助于推动该领域的进一步发展。
recommend-type

Mockingbird v2:PocketMine-MP新防作弊机制详解

标题和描述中所涉及的知识点如下: 1. Mockingbird反作弊系统: Mockingbird是一个正在开发中的反作弊系统,专门针对PocketMine-MP服务器。PocketMine-MP是Minecraft Pocket Edition(Minecraft PE)的一个服务器软件,允许玩家在移动平台上共同游戏。随着游戏的普及,作弊问题也随之而来,因此Mockingbird的出现正是为了应对这种情况。 2. Mockingbird的版本迭代: 从描述中提到的“Mockingbird的v1变体”和“v2版本”的变化来看,Mockingbird正在经历持续的开发和改进过程。软件版本迭代是常见的开发实践,有助于修复已知问题,改善性能和用户体验,添加新功能等。 3. 服务器性能要求: 描述中强调了运行Mockingbird的服务器需要具备一定的性能,例如提及“WitherHosting的$ 1.25计划”,这暗示了反作弊系统对服务器资源的需求较高。这可能是因为反作弊机制需要频繁处理大量的数据和事件,以便及时检测和阻止作弊行为。 4. Waterdog问题: Waterdog是另一种Minecraft服务器软件,特别适合 PocketMine-MP。描述中提到如果将Mockingbird和Waterdog结合使用可能会遇到问题,这可能是因为两者在某些机制上的不兼容或Mockingbird对Waterdog的特定实现尚未完全优化。 5. GitHub使用及问题反馈: 作者鼓励用户通过GitHub问题跟踪系统来报告问题、旁路和功能建议。这是一个公共代码托管平台,广泛用于开源项目协作,便于开发者和用户进行沟通和问题管理。作者还提到请用户在GitHub上发布问题而不是在评论区留下不好的评论,这体现了良好的社区维护和用户交流的实践。 6. 软件标签: “pocketmine”和“anticheat”(反作弊)作为标签,说明Mockingbird是一个特别为PocketMine-MP平台开发的反作弊软件。而“PHP”则可能指的是Mockingbird的开发语言,虽然这个信息与常见的Java或C++等开发Minecraft相关软件的语言不同,但并不排除使用PHP进行服务器端开发的可能性,尤其是对于处理动态网页、服务器端脚本等场景。 7. 压缩包文件: “Mockingbird-stable”是一个文件名称,很可能表示这是一个包含最新稳定版Mockingbird反作弊系统的压缩包。通常,这样的文件名中包含“stable”意味着这是一个经过充分测试且推荐用于生产环境的版本。 8. 社区协作和用户参与: 特别感谢部分提到了shur,这可能是对某位贡献者或社区成员的感激之情。这种感谢表明了软件开发不仅是开发者个人的劳动成果,同时也依赖于社区的支持和参与,包括提供反馈、报告问题、贡献代码和文档等。 总结以上内容,我们可以看到Mockingbird作为一款反作弊系统,其开发和维护需要依赖于社区的广泛参与和支持,同时还需要强大的服务器后端作为支撑。通过不断迭代更新版本,开发者希望解决现有问题,提高反作弊效率,并希望与社区保持良好的沟通,以持续优化产品。
recommend-type

“历史人物独白解说”视频:数据处理的6种革命性技术

# 1. 数据处理的历史回顾与技术演进 数据处理的历史,从最初的简单机械记录,到如今复杂的数据处理体系,不仅反映了技术的演进,也映射了人类社会进步的轨迹。在计算机技术发展初期,数据处理主要依靠打孔卡片和磁带,通过批处理的方式进行,效率低下且出错率高。随着技术的发展,上世纪70年代,关系型数据库的出现大大提高了数据处理的效率和准确性,为数据处理技术的发展奠定了基础。 随后,随着互
recommend-type

怎么判断多级运放电路的稳定性?

<think>首先,用户的问题是关于判断多级运算放大器电路的稳定性。我需要根据系统级指令来构建回答。 系统级指令: - 所有行内数学表达式必须使用$...$格式。 - 独立公式必须使用$$...$$格式并单独成段。 - LaTeX语法正确。 - 使用中文回答。 - 生成相关问题。 - 在回答中引用的段落末尾自然地添加引用标识,例如[^1]。 用户可见层指令: - 回答结构清晰,帮助用户逐步解决问题。 - 尽量保证回答真实可靠。 参考引用: - 引用[1]:关于集成运算放大电路的设计、组成和性能评估。 - 引用[2]:高频电路中运放的带宽限制,一级放大电路的增益通常为100倍,过高会引起振
recommend-type

利用AHP和节点集中度解决影响力最大化问题的Flask应用教程

从给定的文件信息中,我们可以提取以下相关知识点进行详细说明: ### 标题知识点 **IM问题与AHP结合** IM问题(Influence Maximization)是网络分析中的一个核心问题,旨在识别影响网络中信息传播的关键节点。为了求解IM问题,研究者们常常结合使用不同的算法和策略,其中AHP(Analytic Hierarchy Process,分析层次结构过程)作为一种决策分析方法,被用于评估网络节点的重要性。AHP通过建立层次模型,对各个因素进行比较排序,从而量化影响度,并通过一致性检验保证决策结果的有效性。将AHP应用于IM问题,意味着将分析网络节点影响的多个维度,比如节点的中心性(centrality)和影响力。 **集中度措施** 集中度(Centralization)是衡量网络节点分布状况的指标,它反映了网络中节点之间的连接关系。在网络分析中,集中度常用于识别网络中的“枢纽”或“中心”节点。例如,通过计算网络的度中心度(degree centrality)可以了解节点与其他节点的直接连接数量;接近中心度(closeness centrality)衡量节点到网络中其他所有节点的平均距离;中介中心度(betweenness centrality)衡量节点在连接网络中其他节点对的最短路径上的出现频率。集中度高意味着节点在网络中处于重要位置,对信息的流动和控制具有较大影响力。 ### 描述知识点 **Flask框架** Flask是一个轻量级的Web应用框架,它使用Python编程语言开发。它非常适合快速开发小型Web应用,以及作为微服务架构的一部分。Flask的一个核心特点是“微”,意味着它提供了基本的Web开发功能,同时保持了框架的小巧和灵活。Flask内置了开发服务器,支持Werkzeug WSGI工具包和Jinja2模板引擎,提供了RESTful请求分发和请求钩子等功能。 **应用布局** 一个典型的Flask应用会包含以下几个关键部分: - `app/`:这是应用的核心目录,包含了路由设置、视图函数、模型和控制器等代码文件。 - `static/`:存放静态文件,比如CSS样式表、JavaScript文件和图片等,这些文件的内容不会改变。 - `templates/`:存放HTML模板文件,Flask将使用这些模板渲染最终的HTML页面。模板语言通常是Jinja2。 - `wsgi.py`:WSGI(Web Server Gateway Interface)是Python应用程序和Web服务器之间的一种标准接口。这个文件通常用于部署到生产服务器时,作为应用的入口点。 **部署到Heroku** Heroku是一个支持多种编程语言的云平台即服务(PaaS),它允许开发者轻松部署、运行和管理应用。部署Flask应用到Heroku,需要几个步骤:首先,创建一个Procfile文件,告知Heroku如何启动应用;其次,确保应用的依赖关系被正确管理,通常通过一个requirements.txt文件列出所有依赖;最后,使用Git将应用推送到Heroku提供的仓库,Heroku会自动识别Procfile并开始部署过程。 ### 标签知识点 **HTML** HTML(HyperText Markup Language,超文本标记语言)是用于创建网页和Web应用的标准标记语言。它定义了网页的结构和内容。HTML文件由一系列元素组成,这些元素通过标签(tags)来表示,如`<p>`代表段落,`<a>`代表链接,`<img>`代表图像等。HTML5是当前使用的最新版本,支持更多的特性,如离线存储、多媒体和图形等。 ### 压缩包子文件的文件名称列表知识点 **IMproblem-using-AHP-and-centralisation-of-nodes-master** 这里的文件名称“IMproblem-using-AHP-and-centralisation-of-nodes-master”表明了一个GitHub仓库的名称,其中包含了源代码以及与项目相关的所有文件。从名称中可以看出,该仓库是关于如何结合AHP和节点集中度分析来解决IM问题的Flask应用程序。文件名中的“master”表明这是仓库的主分支(现在叫做main分支),它是项目最新的、可部署的代码版本。 综合来看,本段信息为我们提供了构建和部署一个使用Flask框架、针对IM问题使用AHP和节点集中度分析的Web应用的方法和步骤。同时,介绍了应用在不同环节中所需技术和组件的详细知识点。
recommend-type

视频内容自动生成算法:突破性的8大最新进展

# 1. 视频内容自动生成算法概述 ## 算法发展背景 随着人工智能技术的迅速发展,视频内容自动生成算法已经成为媒体和娱乐行业的重要工具。这些算法能够自动编辑和合成视频内容,使内容创作者能够以较低的成本和时间生成高质量的视频。从社交媒体动态到在线教育内容,视频内容自动生成的应用场景正在不断扩大。 ## 核心技术简述 视