GetB function

Calculate B function

Calculate B function

This function solve numericaly the non lineal inequation of the Delta system. Also return the s(i) values of the equation.

GetB(mx, tol = 1e-12, maxits = 1000)

Arguments

  • mx: Matrix. Modified matrix to have a solution. Usually GetMxM1fork>2andGetMxM1 for k>2 and GetMxM2 in case of k = 2.
  • tol: Double number. Indicate the precision of the numeric method to calculate B. Expected to be 1e-6 <= tol <= 1e-15.Default is 1e-12.
  • maxits: Whole number. Indicate the maximum number of iterations of the numeric method to calculate B. Expected to be 100 <= maxits <= 5000. Default is 1000.

Examples

GetB(mx = matrix(c(1,0,0,0,2,0,0,0,3),3,3),tol = 1e-12, maxits = 1000) GetB(mx = matrix(c(1,2,0,3,4,0,0,0,1),3,3),tol = 1e-12, maxits = 1000)
  • Maintainer: Antonio Rodriguez
  • License: GPL-3
  • Last published: 2019-12-09

Useful links