logis function

The logistic transform

The logistic transform

Create a matrix YY binding array Y with a vector of ones, placed as the first column of YY. It applies the logistic transform componentwise to the standard matrix multiplication between YY and param.

logis(Y,param)

Arguments

  • Y: A generic matrix or one dimensional array
  • param: Vector of coefficients, whose length is NCOL(Y) + 1 (to consider also an intercept term)

Returns

Return a vector whose length is NROW(Y) and whose i-th component is the logistic function at the scalar product between the i-th row of YY and the vector param.

Examples

n<-50 Y<-sample(c(1,2,3),n,replace=TRUE) param<-c(0.2,0.7) logis(Y,param)
  • Maintainer: Rosaria Simone
  • License: GPL-2 | GPL-3
  • Last published: 2024-02-23

Useful links