How to create NxM Corr matrix from Column 2 of 2xN signals in R?
问题 I have 2x N amount of 1D Signals in files where Column 1 is Signal 1 and Column 2 Signal 2. Code 1 is simplified example about 1x N amount of 1D signals, while Code 2 is the actual target with two pieces of pseudocode about: to create two dimensional vector ( files[[i]] = i,i+1 ) - just two integer data units in each row separated by comma, and and then accessing the data there later ( tcrossprod( files[[]][, 2], files[[]][, 2] ) ) where I cannot refer to all columns 2 of all signals