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