Octave while/for 语句——代码出了什么问题?

发布于 2024-11-04 08:14:14 字数 645 浏览 1 评论 0原文

这是我的 Octave 代码

    for K= 1:10
    while ( p < 1 )
        ceil(log2(K))  +  1/(1-(1-p)^K) %function
        p = p + sens;
        K
    endwhile;
 endfor

 K

,这里是一个输出:

ans =  10.000
K =  1
ans =  5.0000
K =  1
ans =  3.3333
K =  1
ans =  2.5000
K =  1
ans =  2
K =  1
ans =  1.6667
K =  1
ans =  1.4286
K =  1
ans =  1.2500
K =  1
ans =  1.1111
K =  1
ans =  1
K =  1
K =  10

因此,正如您所看到的 - 在内部 while 语句中,K 的值固定为 1。我应该做什么将此值更改为 1 到 10 之间。为什么它不起作用?我不知道为什么这个内部 while 语句只进行一次。

答案:for K= 之后应该有 p=initial_value...

This is my Octave code

    for K= 1:10
    while ( p < 1 )
        ceil(log2(K))  +  1/(1-(1-p)^K) %function
        p = p + sens;
        K
    endwhile;
 endfor

 K

and here is an output:

ans =  10.000
K =  1
ans =  5.0000
K =  1
ans =  3.3333
K =  1
ans =  2.5000
K =  1
ans =  2
K =  1
ans =  1.6667
K =  1
ans =  1.4286
K =  1
ans =  1.2500
K =  1
ans =  1.1111
K =  1
ans =  1
K =  1
K =  10

So, as you can see -- in inner while statement value of K is fixed to 1. What I am supposed to do to vary this value between 1 and 10. Why it is not working? I have no idea why this inner while statement is proceed only once.

ANSWER: There should be p= initial_value after for K=...

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

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

发布评论

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

评论(1

雨后咖啡店 2024-11-11 08:14:14

for K=... 之后应该有 p=initial_value
也就是说,像这样:

for K = 1:10
    p = somevalue;
    while ( p < 1 )
    ...

There should be p= initial_value after for K=...
That is, like this:

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