getPerformanceStats: get performance stats

View source: R/spotTools.R

getPerformanceStatsR Documentation

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

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)


SPOT documentation built on June 26, 2022, 1:06 a.m.