Learn R Programming

SPOT (version 2.11.10)

getPerformanceStats: get performance stats

Description

determines mean performance

Usage

getPerformanceStats(x, y)

Arguments

x

matrix of n solutions (usually a (nxd)-matrix, where d is the problem dimension)

y

matrix with objective values (usually a (nx1)-matrix

Details

further stats will be added

Examples

Run this code
# NOT RUN {
x <- matrix(1:10, ncol=2, byrow=TRUE)
y1 <- funSphere(x) +1
y2 <- funSphere(x) -1
x <- rbind(x,x)
y <- rbind(y1, y2)
M <- getPerformanceStats(x,y)

# }

Run the code above in your browser using DataLab