Returns the name.
name = uncprb_getname(prbmat) name = uncprb_getname(prbmat,longflag)
a matrix of floating point integer, the problem number
a boolean, if true returns the "long name" - human readable - of the test case. If false, returns the short name. (default = %f)
a string, the name of the problem
Selects the appropriate function based on nprob.
// Get the name for Rosenbrock's test case nprob = 1 name = uncprb_getname(nprob) // Get all names at once nprobmax = uncprb_getproblems(); namemat = uncprb_getname(1:nprobmax); // Search for number of the "almost" problem nprobmax = uncprb_getproblems(); namemat = uncprb_getname(1:nprobmax); nprob = find(namemat=="almost") | ![]() | ![]() |