R/print.summary.value.R

print.summary.value <-
function (x, ...){

  cat ("Estimated Optimal Value: \n");
  print (x$optVal)
  cat ("Estimated Value of (1, 1) Regime: \n");
  print (x$PosPos)
  cat ("Estimated Value of (1, -1) Regime: \n");
  print (x$PosNeg)
  cat ("Estimated Value of (-1, 1) Regime: \n");
  print (x$NegPos)
  cat ("Estimated Value of (-1, -1) Regime: \n");
  print (x$NegNeg)
}
kalinn/iqLearn documentation built on Aug. 4, 2022, 10:15 p.m.