Calculate probability matrix from distances and dot products between neuron segments
Source:R/smat.r
calc_prob_mat.Rd
Calculate probability matrix from distances and dot products between neuron segments
Usage
calc_prob_mat(
nndists,
dotprods,
distbreaks,
dotprodbreaks = seq(0, 1, by = 0.1),
ReturnCounts = FALSE
)
Arguments
- nndists
a list of nearest-neighbour distances or a list of both nearest-neighbour distances and dot products.
- dotprods
a list of dot products.
- distbreaks
a vector specifying the breaks for distances in the probability matrix.
- dotprodbreaks
a vector specifying the breaks for dot products in the probability matrix.
- ReturnCounts
a Boolean indicating that counts should be returned instead of the default probabilities.