tmat(Rssa)
tmat()所属R语言包:Rssa
Toeplitz matrices operations.
Toeplitz矩阵的操作。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A set of routines to operate on Toeplitz matrices stored in compact FFT-based form.
Toeplitz矩阵紧凑的基于FFT的形式存储在一组例程来操作。
用法----------Usage----------
new.tmat(F, L = (N - 1) %/% 2)
is.tmat(t)
tcols(t)
trows(t)
tmatmul(tmat, v, transposed = FALSE)
参数----------Arguments----------
参数:F
series to construct the trajectory matrix for.
串联构造的轨迹矩阵。
参数:L
the window length.
窗口长度。
参数:t, tmat
matrix to operate on.
矩阵来操作。
参数:transposed
logical, if 'TRUE' the multiplication is performed with the transposed matrix.
逻辑,如果“TRUE”的转置矩阵的乘法的执行。
参数:v
vector to multiply with.
矢量繁殖。
Details
详细信息----------Details----------
Fast Fourier Transforms provides a very efficient matrix-vector multiplication routine for Toeplitz matrices. See the paper in 'References' for the details of the algorithm.
快速傅立叶变换,提供了非常有效的矩阵矢量乘法例程Toeplitz矩阵。参见该算法的详细信息的“参考文献”中的纸张。
参考文献----------References----------
SSA. Statistics and Its Interface, Vol. 3, No. 3, Pp. 257-268
实例----------Examples----------
# Construct the Toeplitz trajectory matrix for 'co2' series[构造的Toeplitz轨迹矩阵的二氧化碳系列]
h <- new.tmat(co2, 10)
# Print the number of columns and rows[打印的行和列的数量]
print(trows(h)); print(tcols(h))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|