2014-02-24 02:05:36 +00:00
|
|
|
# Second weighting vector of the quadratic estimating equation (gaussian)
|
|
|
|
#
|
|
|
|
# Author: Francois Pelletier
|
|
|
|
#
|
|
|
|
# LGPL-3.0
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
#' Second weighting vector of the quadratic estimating equation (gaussian)
|
|
|
|
#' @param param Vector of parameters of the distribution function
|
|
|
|
#' @param variancef Variance function of the distribution
|
|
|
|
#' @param dsd Derivative in respect to the parameter vector of the standard deviation function of the distribution
|
|
|
|
#' @return Second weighting vector
|
2014-03-06 02:57:44 +00:00
|
|
|
#' @export b.gauss
|
2014-02-24 02:05:36 +00:00
|
|
|
#' @author Francois Pelletier
|
|
|
|
b.gauss <- function(param,variancef,dsd)
|
|
|
|
{
|
|
|
|
dsd(param)/variancef(param)
|
|
|
|
}
|
|
|
|
|
|
|
|
|