solve.tridiag(tis)
solve.tridiag()所属R语言包:tis
Solve a Tridiagonal System of Equations
解决了三对角方程组
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function solves the equation a %*% x = b for x, where a is tridiagonal and b can be either a vector or a matrix.
此功能解决了方程a %*% x = bx,其中a是三对角和b可以是一个向量或矩阵。
用法----------Usage----------
## S3 method for class 'tridiag'
solve(a, b, ...)
参数----------Arguments----------
参数:a
a tridiag object: a square tridiagonal (all zeroes except for the main diagonal and the diagonals immediately above and below it) matrix containing the coefficients of the linear system.
tridiag对象:一个正方形的三对角(全零的主对角线位置的对角线的正上方和正下方的除外)基质中含有的线性系统的系数。
参数:b
a vector or matrix giving the right-hand side(s) of the linear system. If missing, b is taken to be an identity matrix and the function will return the inverse of a.
给线性系统的右手侧(s)的一个向量,矩阵。如果缺少,b是一个单位矩阵,功能将返回逆a。
参数:...
ignored
忽视
Details
详细信息----------Details----------
Uses the LINPACK dgtsv routine.
使用的LINPACKdgtsv常规。
参见----------See Also----------
solve
solve
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|