PINVmat: Generalized Inverse of A Big Matrix Whit MATLAB

Description Usage Arguments Details Value Author(s) References Examples

View source: R/PINVmat.R

Description

Calucated invesre of the generilzed big matrix with MATLAB

Usage

1
PINVmat(x, maxTriess = 3000, intervall = 30)

Arguments

x

a numeric matrix

maxTriess

The maximum number of times the connection is check for an answer from the MATLAB server before giving up. Default values is 3000 times.

intervall

The interval in seconds between each poll for an answer. Default interval is 30 (second).

Details

see pinv function in MATLAB.

Value

a inverse generalized matrix

Author(s)

Sayyed Reza Alavian

References

[1]Alavian, S. R. (2019). Creating LRQMM package for predicting the breeding value of animals by corrected mixed quantile regression (Unpublished master's thesis). Ferdowsi University Of Mashhad. Mashhad. Iran.[Persian].

Examples

1
2
3
4
5
6
M <- rbind(
  c(20, 10, 15,  0,  2),
  c(10,  5,  8,  1,  0),
  c( 0,  1,  2,  6,  3))
#before running this code, be sure for Matlab installation in your system.
# >PINVmat(M)

LRQMM documentation built on Oct. 4, 2021, 9:08 a.m.

Related to PINVmat in LRQMM...