diff options
author | bgtushar | 2017-11-27 20:45:48 +0530 |
---|---|---|
committer | bgtushar | 2017-11-27 20:45:48 +0530 |
commit | 1a9dc5fe1e700a123787f6183bceacaefaf954d6 (patch) | |
tree | 0f34c00c10efe4a7bf51b13c246deef73bc8c70b /macros/autoreg_matrix.sci | |
parent | e9ab4b0b52db51be30f4ac3d07673c20b48da13c (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-1a9dc5fe1e700a123787f6183bceacaefaf954d6.tar.gz FOSSEE-Signal-Processing-Toolbox-1a9dc5fe1e700a123787f6183bceacaefaf954d6.tar.bz2 FOSSEE-Signal-Processing-Toolbox-1a9dc5fe1e700a123787f6183bceacaefaf954d6.zip |
Deleted bin and HTML, Added Functions
Diffstat (limited to 'macros/autoreg_matrix.sci')
-rw-r--r-- | macros/autoreg_matrix.sci | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/macros/autoreg_matrix.sci b/macros/autoreg_matrix.sci new file mode 100644 index 0000000..bc36969 --- /dev/null +++ b/macros/autoreg_matrix.sci @@ -0,0 +1,13 @@ +function y = autoreg_matrix(Y, varargin) + +funcprot(0); +rhs = argn(2) +if(rhs<2 | rhs>2) +error("Wrong number of input arguments."); +end + + select(rhs) + case 2 then + y = callOctave("autoreg_matrix", Y, varargin(1)); + end +endfunction |