在 Ubuntu 中如何消除这个错误?

发布于 2025-01-16 03:25:32 字数 281 浏览 1 评论 0原文

set tracefile [open out.tr w]
$ns trace-all $namfile

当我运行上面的 TCL 代码时,它会显示在终端中。我刚开始学习TCL所以不知道该怎么办这个错误。

can't read "namfile": no such variable
    while executing
"$ns trace-all $namfile"
set tracefile [open out.tr w]
$ns trace-all $namfile

When I am running the above TCL code this is showing in terminal. I have just started learning TCL so don't know what to do anything this error.

can't read "namfile": no such variable
    while executing
"$ns trace-all $namfile"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不忘初心 2025-01-23 03:25:32

错误消息非常清楚:当代码 $ns trace-all $namfile 运行时,未设置名为 namfile 的变量。我无法从您提供的代码片段中看出原因; 也许这是因为您应该使用 $tracefile 来代替,或者也许您应该将 namfile 设置为某些内容但没有这样做?或者甚至可能是更复杂的事情。 (我也不知道您是否应该为 trace-all 方法提供通道或文件名;您应该查找一下。)

The error message is pretty clear: the variable called namfile is not set at the point when the code $ns trace-all $namfile is run. I can't tell why from the snippet you provided; maybe it's because you should have used $tracefile instead, or maybe you should set namfile to something and haven't done so? Or even possibly something more complicated. (I also don't know whether you're supposed to give a channel or a filename to the trace-all method; you should look that up.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文