function listexp() % listexp % Lists the compiler options used to produce each algorithm. % ---------- % Tamara Gibson % Applied Math Program, Univ. of Maryland, College Park, MD 20742 % gibson@math.umd.edu % http://www.cs.umd.edu/~gibson % ---------- % Companion to: % Tamara Gibson, Dianne P. O'Leary and Larry Nazareth % "BFGS with Update Skipping and Varying Memory" % Technical Report CS-TR-3663 UMIACS-TR-96-49 % University of Maryland College Park, 1996 % ---------- % 1996 % ---------- load results; for i=1:200 expression = ['exp',num2str(i)]; if exist(expression) fprintf(1,'Experiment %2d: %s\n',i,eval(expression)); else break; end end