basisprod {mand} | R Documentation |
Product Radial Basis Function
Description
This is a function to product the output for the rbfunc function with data matrix for a dimension reduction.
Usage
basisprod(A, B)
Arguments
A |
a list or a matrix correponding to the output for the |
B |
a list or a matrix. |
Details
basisprod
requires one list and one matrix.
Examples
imagedim1=c(10,10,10)
B1 = rbfunc(imagedim=imagedim1, seppix=4, hispec=TRUE)
B2 = rbfunc(imagedim=imagedim1, seppix=4, hispec=FALSE)
n = 50
S = matrix(rnorm(n*prod(imagedim1)), nrow = n, ncol = prod(imagedim1))
SB1 = S %*% B1
SB12 = tcrossprod(S, t(B1))
all(SB1-SB12 == 0)
SB2 = basisprod(S, B2)
all(SB1-SB2 == 0)
BS1 = t(B1) %*% t(S)
BS2 = basisprod(B2, S)
all(BS1-t(BS2) == 0)
[Package mand version 2.0 Index]