No BSD License  

Highlights from
numerical.zip

from numerical.zip by David Terr
Archive containing numerical function files.

partitionplot.m
% Plot the partition function

t = PartitionTable(50);
x = t(:,1);
y = t(:,2);

figure;
semilogy(x,y),
    xlabel('n'),...
    ylabel('p(n)'),title('Unrestricted partition function')
grid on;

Contact us at files@mathworks.com