R/Ma3.R

#' @title Ma3
#' @description support function to GUI Multiplier function. Not intended to be called directly.
#' @details this function is to calculate Ma3 matrix for accounting multipier decomposition.
#' @param I identity matrix
#' @param Abintang A* matrix that generate by ABintang function in Abintang.R
#' @param Abintang2 A** matrix that generate by ABintang2 function in Abintang2.R
#' @author Tiara Dewi
#' @export


getMa3 <-function (I, Abintang, Abintang2){
  Ma3 <- I + Abintang + Abintang2
  return (Ma3)
}

Try the multiplier package in your browser

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

multiplier documentation built on May 2, 2019, 5:56 p.m.