Rev | Line | |
---|
[123] | 1 | %NIST32 5000 NIST binary digits in 32x32 resolution |
---|
| 2 | % |
---|
| 3 | % A = NIST32(digits) |
---|
| 4 | % |
---|
| 5 | % Load the desired digits (0,1,2,3,4,5,6,7,8 or 9) in the dataset A. |
---|
| 6 | % |
---|
| 7 | % See also DATASETS, PRDATASETS, NIST16 |
---|
| 8 | |
---|
[132] | 9 | % Copyright: R.P.W. Duin |
---|
[123] | 10 | % Faculty EWI, Delft University of Technology |
---|
| 11 | % P.O. Box 5031, 2600 GA Delft, The Netherlands |
---|
| 12 | |
---|
| 13 | |
---|
| 14 | function a = nist32(N) |
---|
| 15 | if nargin < 1, N = [0:9]; end |
---|
[132] | 16 | a = pr_getdata('http://prtools.tudelft.nl/prdatasets/nist32.mat',1); |
---|
[123] | 17 | |
---|
| 18 | % prdatasets(mfilename,1); |
---|
| 19 | % a = pr_dataset('nist32'); |
---|
| 20 | a = setname(a,'NIST32 Binary Digits'); |
---|
| 21 | a = selclass(a,N+1); |
---|
Note: See
TracBrowser
for help on using the repository browser.