From c0c0582462720ed597b00e116506570577614e89 Mon Sep 17 00:00:00 2001 From: shamikam Date: Tue, 7 Nov 2017 15:59:48 +0530 Subject: initial commit --- help/en_US/scilab_en_US_help/udecode.html | 86 +++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 help/en_US/scilab_en_US_help/udecode.html (limited to 'help/en_US/scilab_en_US_help/udecode.html') diff --git a/help/en_US/scilab_en_US_help/udecode.html b/help/en_US/scilab_en_US_help/udecode.html new file mode 100644 index 0000000..50c0dba --- /dev/null +++ b/help/en_US/scilab_en_US_help/udecode.html @@ -0,0 +1,86 @@ +
+ +Decodes the input uniformly quantized values
y=uencode(u,n,v,'saturatemode')
Uniformly decodes the input vector or n-dimensional array of integers u with peak values +/- v +If u has only positive values, the range of integers is assumed to be [0,2^n-1] +If u has positive and negative values the range of integers is assumed to be [-2^(n-1),2^(n-1)-1] +If v is not specified, its default value is 1 +If saturatemode='wrap' the output is wrapped using modulo arithmetic if overflow occurs +If saturatemode='saturate' the output is saturated if overflow accors +Example +u = int8([-1 1 2 -5]); +ysat = udecode(u,3) +ysat =
+- 0.25 0.25 0.5 - 1. +Author +Ankur Mallick +[1] International Telecommunication Union. General Aspects of Digital Transmission Systems: Vocabulary of Digital Transmission and Multiplexing, and Pulse Code Modulation (PCM) Terms. ITU-T Recommendation G.701. March, 1993.