执行前面的 R 编程代码后,将会创建一个在表 4 中显示 tcrossprod 结果的矩阵。 tcrossprod 函数也是 t 函数和 %*% 运算符表达式的更快替代方法。所以,我们也可以使用这种替代代码: my_tcrossprod2 <- my_mat %*% t(my_mat) # %*% operator & t() function my_tcrossprod2 # Print cross product of...
R语言中的tcrossprod()函数用于返回指定矩阵转置的叉积。 Syntax:tcrossprod(x) Parameters: x:numeric matrix 编程需要懂一点英语 示例1: # R program to illustrate # tcrossprod function # Initializing a matrix with # 2 rows and 2 columns x <- matrix(1:4, 2, 2) # Getting the matrix representa...