-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathREADME
120 lines (40 loc) · 1.77 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
Contents of This Directory
--------------------------
This directory contains the software and data files to
accompany the book:
A Course in Digital Signal Processing,
by Boaz Porat, John Wiley & Sons, 1997
ISBN: 0-471-14961-6
All files are in zip format. On an IBM-PC compatible
computer, extract with pkunzip. On Unix, extract with
unzip.
Files having extension .m are for use with MATLAB.
Files having extension .ps can be sent to a
PostScript printer or viewed on screen using a
PostScript viewing program (such as ghostscript,
ghostview, alchemy, acrobat, etc).
Files having extension .mat are MATLAB files in
native MATLAB format.
Files having extension .dat are ASCII data files.
Files having extension .bin are binary data files.
They can be loaded into MATLAB using the commands:
>> fid = fopen('ecg.bin','r'); % to open the file ecg.bin
>> ecg = fread(fid,'int16'); % data are short int
Here is a list of zip files available in this directory
as of September 1, 1996. In the future, a file errata.ps
may be added if errors are discovered in the book.
slides.zip: All figures in the book (except figures
related to problems), including captions,
in PostScript format. Can be used to
generate transparencies.
mfiles.zip: M files of the MATLAB programs (67 in total).
datfiles.zip: The file sunspot.dat; see Chapter 13.
matfiles.zip: The file female-w.mat; see Chapter 14.
binfiles.zip: The binary files (musical signals and ECG);
see Chapter 14.
E-mail questions and comments to Boaz Porat at
boaz@ee.technion.ac.il.
More information about the book may be found on the Web at
http://www-ee.technion.ac.il/~boaz
Boaz Porat
September 1, 1996