gpt4 book ai didi

octave - 禁止打印每个任务

转载 作者:行者123 更新时间:2023-12-03 09:53:22 25 4
gpt4 key购买 nike

我在 Octave 中编写了一个简单的脚本。当我从命令行运行它时,每次为变量分配一个新值时,Octave 都会打印一行。我如何抑制它?

MWE:

function result = stuff()
result = 0
for i=0:10,
j += i
end
end

当我运行它时:
octave:17> stuff()
result = 0
result = 0
result = 1
result = 3
result = 6
result = 10
result = 15
result = 21
result = 28
result = 36
result = 45
result = 55
ans = 55
octave:18>

我想摆脱 result = ...线。
我是 Octave 的新手,所以请原谅我问这样一个基本问题。

最佳答案

通过在语句末尾添加分号,它将抑制中间结果。

在你的情况下:

function result = stuff()
result = 0;
for i=0:10,
j += i;
end
end

会做的伎俩。

关于octave - 禁止打印每个任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32098651/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com