From 6011540ce239922c0723ff2f1534e915b420cd1f Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Tue, 17 Jul 2018 18:02:33 +0530 Subject: remove autogenerated files remove execute permission from scilab files update macros/names fix build process by building macros before help --- help/en_US/scilab_en_US_help/udecode.html | 86 ------------------------------- 1 file changed, 86 deletions(-) delete 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 deleted file mode 100644 index 6d2bb80..0000000 --- a/help/en_US/scilab_en_US_help/udecode.html +++ /dev/null @@ -1,86 +0,0 @@ -
- -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.