summary.jaya: Function to summarize the Jaya function

Description Usage Arguments Value Examples

View source: R/summaryJaya.R

Description

Function to summarize the Jaya function

Usage

1
2
## S3 method for class 'jaya'
summary(object, ...)

Arguments

object

as an output object from 'jaya' function

...

Additional parameters given to the function

Value

returns the summary of output object from 'jaya' function

Examples

1
2
3
4
# Test Function to minimize
square <- function(x){return((x[1]^2)+(x[2]^2))}
a <- jaya(fun = square, lower = c(-100,-100), upper = c(100,100), maxiter = 10, n_var = 2)
summary(a)

Jaya documentation built on Nov. 12, 2019, 5:07 p.m.