执行前面的 R 编程代码后,将会创建一个在表 4 中显示 tcrossprod 结果的矩阵。 tcrossprod 函数也是 t 函数和 %*% 运算符表达式的更快替代方法。所以,我们也可以使用这种替代代码: my_tcrossprod2 <- my_mat %*% t(my_mat) # %*% operator & t() function my_tcrossprod2 # Print cross product of...
#R program to illustrate#tcrossprodfunction#Initializing a matrix with#2rowsand2columns x<-matrix(1:4,2,2)#Getting the matrix representationx#Calling thetcrossprod()functiontcrossprod(x) 输出: [,1][,2][1,]13[2,]24[,1][,2][1,]1014[2,]1420 ...