在R中我有2个函数a
和b
。 a
取1个整数并返回1个整数,而b
取1个整数并返回1,2或3个整数。例如:
a(1)=6 and b(1)= 3 4
and a(2)=10 and b(2) = 2.
现在我想保存仅b
的函数值,所以我创建了这个循环但它在R中不起作用。
u=matrix(,)
for(j in 1:100) {
u[,j] = rbind( a(j), b(j) )
}
R说'error: subscript out of bounds'
。
我只想要一个函数值为b
的矩阵,所以输入u
我应该得到这个
3 4
2
...