Code covered by the BSD License  

Highlights from
MATLAB Contest Statistics

image thumbnail
from MATLAB Contest Statistics by Matthew Simoneau
The code used to generate the "Statistics" page for the MATLABĀ® Contest.

reverse(y,orders,mi,ma)
function y = reverse(y,orders,mi,ma)
%y = ((y-mi)/(ma-mi)*(10^orders-1))+1;
y = mi+((ma-mi)*(y-1)/(10^orders-1));

Contact us at files@mathworks.com