0
我在努力研究如何在R中編寫這個和;我猜測我們可以使用for循環,但不能讓我的頭繞過它。在一個for循環中求和R
我試圖代碼的等式爲:
正\ sum_ {K = 0}^{N - 1}選擇第(n-1,K)beta_k EXP(K 大號 NK)對於n = 1,2,...
其中:
- beta_k是我已經有的向量
- L是一個常數。
我已經手動編碼這個,但想把它放到某種for循環中。
mu3<-3-choose(2,1)*beta1*exp(-1*lambdaL*(3-1))-choose(2,2)*beta2*exp(-2*lambdaL*(3-2))
mu4<-4-choose(3,1)*beta1*exp(-1*lambdaL*(4-1))-choose(3,2)*beta2*exp(-2*lambdaL*(4-2))-choose(3,3)*beta3*exp(-3*lambdaL*(4-3))
mu5<-5-choose(4,1)*beta1*exp(-1*lambdaL*(5-1))-choose(4,2)*beta2*exp(-2*lambdaL*(5-2))-choose(4,3)*beta3*exp(-3*lambdaL*(5-3))-choose(4,4)*beta4*exp(-4*lambdaL*(5-4))
等
lambdaL<-0.5
這是我的名單公測的
betarec(10,0.5)
[1] 0.0000000 1.0000000 0.7869387 1.0278660 1.5510843 2.3702034 3.4694342
4.7718938
[9] 6.1685468 7.5667952 8.9154479
謝謝!
這不是差不多了,你[問昨天(問題https://stackoverflow.com/questions/44884411/recursive-for-環中-R /)?你嘗試過什麼循環? –
我試圖使用這個[資源](http://www.codecogs.com/latex/eqneditor.php)添加一個數學膠乳圖像。 [Math Stack Exchange](https://math.stackexchange.com/)上使用的MathJax不幸在StackOverflow中無法呈現。根據需要移除或調整。 – Parfait