Changes between Version 4 and Version 5 of DSP/Interpolation
- Timestamp:
- Aug 4, 2015, 3:50:36 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DSP/Interpolation
v4 v5 71 71 [[Image(sine_interpolated.png, 500px)]] 72 72 == Interpolation of a .WAV File with Octave == 73 To start off with interpolation of a wav file download the island.wav file in the files attached below and load up Octave. Enter the following afterwards: 74 73 75 {{{ 74 [signal, fs] = auload("island (1).wav");76 [signal, fs] = auload("island.wav"); 75 77 signal_zeropadded = [signal;zeros(3,length(fs))]; 76 78 signal_zeropadded = signal_zeropadded(:);