getPerformanceStats | R Documentation |
determines mean performance
getPerformanceStats(x, y)
x |
matrix of n solutions (usually a (nxd)-matrix, where d is the problem dimension) |
y |
matrix with objective values (usually a (nx1)-matrix |
further stats will be added
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.