This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % This code answers the question at http://dsp.stackexchange.com/a/110/64 | |
| N = 150; % Order of LPC auto-regressive model | |
| P = 500; % Number of samples in the extrapolated time series | |
| M = 150; % Point at which to start predicting | |
| t = 1:P; | |
| x = 5*sin(t/3.7+.3)+3*sin(t/1.3+.1)+2*sin(t/34.7+.7); %This is the measured signal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package | |
| { | |
| import flash.display.Loader; | |
| import flash.net.URLRequest; | |
| import flash.net.URLStream; | |
| import flash.events.IOErrorEvent; | |
| import flash.events.SecurityErrorEvent; | |
| import flash.events.Event; | |
| import flash.utils.ByteArray; | |
| import flash.utils.Endian; |
NewerOlder