R/Conduit_1.R

Defines functions Conduit_1

Documented in Conduit_1

#' Conduit between minimise_elements function and Fac_F_R 
#' of steepest descent algorithm.
#' 
#' @keywords internal
#'
#' @param Fmat  xx   
#' @param place  xx
#' @param S  xx
#' @param cm  xx
#' @return
#'
#' @examples
Conduit_1 <- function(Fmat, place, S, cm){
  F.locs <- vector()
  F.old <- NNLS_MF(Fmat, S, cm)
  F.news <- Fac_F_RR1(F.old, place, S, cm)
  F.new <- F.news[[1]]
  n <- F.news[[2]]
  res <- list(F.new,n, F.old)
  return(res)
}

Try the phytoclass package in your browser

Any scripts or data that you put into this service are public.

phytoclass documentation built on April 4, 2025, 4:02 a.m.