Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

function [output] = discrete(n)

h=0;
i=0;
j=0;
k=0;
l=0;
m=0;
close all
hold on
[h i j k l m]=tally(n/4, 1, h, i, j, k, l, m,n/4);
[h i j k l m]=tally(n/4, 2, h, i, j, k, l, m,n/2);
[h i j k l m]=tally(n/4, 3, h, i, j, k, l, m,(n*(3/4)));
tally(n/4, 4, h, i, j, k, l, m,n);
hold off
end

You might also like