我如何在R中填充这个矩阵的条目?
给定:
h_i=t_(i+1)-t_i for i=1,...,n-1 where n is a positive integer.
矩阵 Q
是一个 n
by (n-2)
矩阵,其中条目为 q_(i,j)
其中 i=1,...,n
和 j=2,...n-1
给出:
q_(j-1,j)=1/h_(j-1)
q_(j,j)=-(1/h_(j-1)+1/h_j)
q_(j+1,j)=1/h_j
q_(i,j)=0 for |i-j|>=2
我想得到一个矩阵 Q< /代码>。我如何在 R 中为这个矩阵编写程序?提前非常感谢。
Given:
h_i=t_(i+1)-t_i for i=1,...,n-1 where n is a positive integer.
The matrix Q
is an n
by (n-2)
matrix with entries q_(i,j)
with i=1,...,n
and j=2,...n-1
given by:
q_(j-1,j)=1/h_(j-1)
q_(j,j)=-(1/h_(j-1)+1/h_j)
q_(j+1,j)=1/h_j
q_(i,j)=0 for |i-j|>=2
I want to get a matrix Q
. How do i write a program for this matrix in R? Many thanx in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确地计算出下标,我认为这可以做到:
If I've figured out the subscripts correctly, I think this will do it: