在R中求和

时间:2017-07-21 14:30:14

标签: r matrix while-loop sum

我想在R中计算带有while循环的矩阵。

我将行数编成5000,它可以改变。但它没有给出任何结果。

h=1/20 
g2=matrix(NA,5000,1)
        while(sum(g2)<=0.8)
        {for (j in 1:5000){
            g2[j]=(pexp(((j+(1/2))*h),rate=1,lower.tail = TRUE, log.p = FALSE)
               }
          print(g2)}

1 个答案:

答案 0 :(得分:1)

您的代码中有很多语法错误。我建议你阅读code styling guide,这肯定有助于习惯打开和关闭括号。以下工作正常:

Uncaught TypeError: bob is not a function