function k_plot(PVal,D)

%K_PLOT yields a formatted plot of the output of k_count.

%Written by: Tony E. Smith, 1/27/01

%INPUTS: Output data from k_count (PVal, D)

%SCREEN OUTPUT: Plot of PVal against D

plot(D,PVal,'k.','MarkerSize',20);

hold on;

plot(D,PVal,'k-','LineWidth',2);

hold on;

SIG = .05*ones(length(D),1);

plot(D,SIG,'r--');

xlabel('Radius','Fontsize',12, 'FontWeight', 'bold');

ylabel('P-Value','Fontsize',12, 'FontWeight', 'bold');

