From d2f4d30ebcad7430e4f0495cae5c2b3a16be73ce Mon Sep 17 00:00:00 2001 From: rupak Date: Tue, 21 Jan 2020 19:05:09 +0530 Subject: added help files --- help/en_US/scilab_en_US_help/alignsignals.html | 96 ++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 help/en_US/scilab_en_US_help/alignsignals.html (limited to 'help/en_US/scilab_en_US_help/alignsignals.html') diff --git a/help/en_US/scilab_en_US_help/alignsignals.html b/help/en_US/scilab_en_US_help/alignsignals.html new file mode 100644 index 0000000..495fa9e --- /dev/null +++ b/help/en_US/scilab_en_US_help/alignsignals.html @@ -0,0 +1,96 @@ + + + alignsignals + + + +
+ + + + +
+ << FOSSEE_Communication_Systems_Toolbox + + + FOSSEE_Communication_Systems_Toolbox + + + arithdeco >> + +
+
+
+ + + + FOSSEE_Communication_Systems_Toolbox >> FOSSEE_Communication_Systems_Toolbox > alignsignals + +

+

alignsignals

+

This function aligns the two input signals.

+ + +

Syntax

+
[Xa Ya] = ALIGNSIGNALS(X,Y)
+[Xa Ya] = ALIGNSIGNALS(X,Y,MAXLAG)
+[Xa Ya] = ALIGNSIGNALS(X,Y,MAXLAG,1)
+[Xa Ya D] = ALIGNSIGNALS(...)
+ +

Description

+

[Xa Ya] = ALIGNSIGNALS(X,Y) aligns the two vectors X and Y by estimating +the delay D between the two. If Y is delayed with respect to X, D is +positive , and X is delayed by D samples. If Y is advanced with respect +to X, D is negative, and Y is delayed by -D samples.

+

[Xa Ya] = ALIGNSIGNALS(X,Y,MAXLAG) considers MAXLAG be the maximum correlation +window size which is used to calculate the estimated delay D between X and Y. +MAXLAG is an integer-valued scalar. By default, MAXLAG is equal to MAX(LX,LY)-1. +If MAXLAG is empty ([]),then default value is considered. If MAXLAG +is negative, it is replaced by its absolute value.

+

[Xa Ya] = ALIGNSIGNALS(X,Y,MAXLAG,1) keeps the lengths of Xa +and Ya the same as those of X and Y, respectively. +Here, 1 implies truncation of the intermediate vectors. +Input argument 4 is 0 implies truncation_off (no truncation). +D is positive implies D zeros are pre-pended to X, and the last D samples of X are truncated. +D is negative implies -D zeros are pre-pended to Y, and the last -D samples +of Y are truncated. That means, when D>=Length(X), all samples of X are lost. +Similarly, when -D>=Length(Y), all samples of Y are lost. +Avoid assigning a specific value to MAXLAG when using the truncate=1 option, set MAXLAG to [].

+

[Xa Ya D] = ALIGNSIGNALS(...) returns the estimated delay D.

+

+ +

Examples

+
X = [0 0 0 1 2 3 ];
+Y = [1 2 3 ];
+[Xa,Ya] = alignsignals(X,Y,[],1)
+ +

Authors

+
+
+ +
+ + + + + + +
Report an issue
+ << FOSSEE_Communication_Systems_Toolbox + + + FOSSEE_Communication_Systems_Toolbox + + + arithdeco >> + +
+
+
+ + -- cgit