diff options
author | siddhu8990 | 2017-04-19 11:56:09 +0530 |
---|---|---|
committer | siddhu8990 | 2017-04-19 11:56:09 +0530 |
commit | 645c51daadc9a5c9374b0465ded05f84bca65183 (patch) | |
tree | a2eac389b3e3e67c9182e8369b50eb78b5e698cb | |
parent | 160eb350837f8cd3cdb0943b5929e11f44036826 (diff) | |
download | Scilab2C-645c51daadc9a5c9374b0465ded05f84bca65183.tar.gz Scilab2C-645c51daadc9a5c9374b0465ded05f84bca65183.tar.bz2 Scilab2C-645c51daadc9a5c9374b0465ded05f84bca65183.zip |
Copyright message updated in added files and libraries separated in 'thirdparty' folder
752 files changed, 5503 insertions, 4193 deletions
diff --git a/2.3-1/macros/FunctionAnnotation/FA_SCHUR_SZ.bin b/2.3-1/macros/FunctionAnnotation/FA_SCHUR_SZ.bin Binary files differindex d16f0292..292a6193 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SCHUR_SZ.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SCHUR_SZ.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SCHUR_SZ.sci b/2.3-1/macros/FunctionAnnotation/FA_SCHUR_SZ.sci index 6ae20305..7b426e1c 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SCHUR_SZ.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SCHUR_SZ.sci @@ -1,4 +1,33 @@ function out2sz = FA_SCHUR_SZ(in2tp,in1sz) +//function out2sz = FA_SCHUR_SZ(in2tp,in1sz) +// ----------------------------------------------------------------- +// Get size of output for Schur function +// +// Input data: +// in2tp: string specifying the type of second input argument. +// in1sz: string specifying the size of first input argument. +// +// Output data: +// out2sz: string containing the size for second output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(2),2,2); in2type = string(in2tp); in1sz = string(in1sz); diff --git a/2.3-1/macros/FunctionAnnotation/FA_SCHUR_TP.bin b/2.3-1/macros/FunctionAnnotation/FA_SCHUR_TP.bin Binary files differindex 8b31a0c7..4b0b438f 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SCHUR_TP.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SCHUR_TP.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SCHUR_TP.sci b/2.3-1/macros/FunctionAnnotation/FA_SCHUR_TP.sci index a8b68b17..828ea1e5 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SCHUR_TP.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SCHUR_TP.sci @@ -1,4 +1,32 @@ function out2tp = FA_SCHUR_TP(in2tp) +// function out2tp = FA_SCHUR_TP(in2tp) +// ----------------------------------------------------------------- +// Get type of output for Schur function +// +// Input data: +// in2tp: string specifying the type of second input argument. +// +// Output data: +// out2tp: string containing the type for second output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(1),1,1); in2type = string(in2tp); diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.bin Binary files differindex 68d6a37c..a3b34afc 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.sci index df129f97..3aea8397 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.sci @@ -1,20 +1,32 @@ function outsize = FA_SZ_COLUMN_DIAG(insize) - // function outsize = FA_SZ_1(insize) - // ----------------------------------------------------------------- - // Returns the first element of the size array. - // - // Input data: - // insize: size of input argument. It is an array of 2 strings. - // The first string specifies the number of rows. - // The second string specifies the number of columns. - // - // Output data: - // outsize: first element of the insize array. - // - // Status: - // 08-Dec-2007 -- Raffaele Nutricato: Author. - // 08-Dec-2007 -- Alberto Morea: Test Ok. - // ----------------------------------------------------------------- +//function outsize = FA_SZ_COLUMN_DIAG(insize) +// ----------------------------------------------------------------- +// Get size of column of the output for diag function +// +// Input data: +// insize: string specifying the size of input argument. +// +// Output data: +// outsize: string containing the column size for output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Mushir +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(1),1,1); if(insize(2)=='1') then outsize = insize(1); diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.bin Binary files differindex e39a0be3..76748237 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.sci index 45d74c3a..8a313fee 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.sci @@ -1,6 +1,35 @@ function outsize =FA_SZ_COL_DIAG_IN_EX(insize,val) - -///////////////////////////////COLUMN SIZE FOR INSERT POSITION////////////////// +//function outsize =FA_SZ_COL_DIAG_IN_EX(insize,val) +// ----------------------------------------------------------------- +// Get size of column of the output for diag(insert) function +// +// Input data: +// insize: string specifying the size of input argument. +// val: string containing value of second input +// +// Output data: +// outsize: string containing the column size for output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Mushir +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(2),2,2); + +///////////////////////////////COLUMN SIZE FOR INSERT POSITION//////////////// @@ -8,13 +37,15 @@ function outsize =FA_SZ_COL_DIAG_IN_EX(insize,val) if(val == '0') then //For Oth position outsize = insize(2); //COLUMN size is equal to COLUMN size else // For ...-2,-1,1,2... position - outsize = string(eval(insize(2))+abs(eval(val)));// COLUMN size is equal to COLUMN size + absolute value of position(for 1*3 matrix and 2nd postion COLUMN size is (3+2)=5 + outsize = string(eval(insize(2))+abs(eval(val))); + // COLUMN size is equal to COLUMN size + absolute value of position(for 1*3 matrix and 2nd postion COLUMN size is (3+2)=5 end elseif((insize(2) == '1')) // If COLUMN size is 1 if(val == '0') then //For Oth position outsize = insize(1); //COLUMNS size is equal to ROW size else // For ...-2,-1,1,2.... position - outsize = string(eval(insize(1))+abs(eval(val)));// COLUMN size is equal to ROW size + absolute value of position(for 3*1 matrix and 1st postion COLUMN size is (3+1)=4 + outsize = string(eval(insize(1))+abs(eval(val))); + // COLUMN size is equal to ROW size + absolute value of position(for 3*1 matrix and 1st postion COLUMN size is (3+1)=4 end //////////////////////////////////////////////////////////////////////////////// diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_DIFF.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_DIFF.bin Binary files differindex 5f169e6f..08d66c13 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_DIFF.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_DIFF.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_DIFF.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_DIFF.sci index df183100..5639ce77 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_DIFF.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_DIFF.sci @@ -1,4 +1,17 @@ -// Copyright (C) 2016 - IIT Bombay - FOSSEE +function outsize = FA_SZ_DIFF(in1size, in2val, in3val) +//function outsize = FA_SZ_DIFF(in1size, in2val, in3val) +// ----------------------------------------------------------------- +// Get size of output for diff function +// +// Input data: +// in1size: string specifying the size of first input argument. +// in2val: string specifying the value of second input argument. +// in3val: string specifying the value of third input argument. +// +// Output data: +// outsize: string containing the size for output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which @@ -8,9 +21,15 @@ // Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in +// + +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(3),3,3); -//This fucntion calulates size of output depending upon input -function outsize = FA_SZ_DIFF(in1size, in2val, in3val) in1size = string(in1size); in1row = eval(in1size(1)); in1col = eval(in1size(2)); diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.bin Binary files differindex 0a5589ba..60cb9d4e 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.sci index 986b5291..69a816cc 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.sci @@ -1,4 +1,33 @@ function outsize = FA_SZ_LINSPACE_ROW(insize) +//function outsize = FA_SZ_LINSPACE_ROW(insize) +// ----------------------------------------------------------------- +// Get size of row for output for linspace function +// +// Input data: +// insize: string specifying the size of first input argument. +// +// Output data: +// outsize: string containing the row size of output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Mushir +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(1),1,1); + in1num = string(eval(insize(1))); outsize = in1num; endfunction: diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_LQE.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_LQE.bin Binary files differindex 2fb97727..8abfa39b 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_LQE.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_LQE.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_LQE.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_LQE.sci index e7aecf1c..6ddd1988 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_LQE.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_LQE.sci @@ -1,4 +1,33 @@ function outsize = FA_SZ_LQE(inval,insz) +//function outsize = FA_SZ_LQE(inval,insz) +// ----------------------------------------------------------------- +// Get size of output for lqe function +// +// Input data: +// inval: string specifying the value of input argument. +// insz: string specifying the size of input argument. +// +// Output data: +// outsize: string containing the size for second output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(2),2,2); inval = eval(inval) insz = eval(insz) diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_LQR.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_LQR.bin Binary files differindex 2de9d568..843fb2ce 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_LQR.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_LQR.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_LQR.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_LQR.sci index 2f199d0b..cf1884aa 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_LQR.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_LQR.sci @@ -1,4 +1,32 @@ function outsize = FA_SZ_LQR(inval) +//function outsize = FA_SZ_LQR(inval) +// ----------------------------------------------------------------- +// Get size of output for lqr function +// +// Input data: +// inval: string specifying the value of input argument. +// +// Output data: +// outsize: string containing the size for output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(1),1,1); inval = eval(inval) outsize(1) = string(int(inval)); diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_OBSCNT.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_OBSCNT.bin Binary files differindex 70ce8df8..b936e29c 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_OBSCNT.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_OBSCNT.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_OBSCNT.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_OBSCNT.sci index 80c0f956..a7cb85b9 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_OBSCNT.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_OBSCNT.sci @@ -1,4 +1,35 @@ function outsize = FA_SZ_OBSCNT(inval,insz1,insz2,nout) +//function outsize = FA_SZ_OBSCNT(inval,insz1,insz2,nout) +// ----------------------------------------------------------------- +// Get size of output for obscont function +// +// Input data: +// inval: string specifying the value of first input argument. +// insz1: string specifying the row size of first input argument. +// insz2: string specifying the col size of first input argument. +// nout: string specifying number of output arguments +// +// Output data: +// outsize: string containing the size for output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(4),4,4); inval = eval(inval); insz1 = eval(insz1); diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.bin Binary files differindex 747a31d3..3ebb9512 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.sci index 3dd4e604..35cf8acc 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.sci @@ -1,5 +1,5 @@ function outsize=FA_SZ_PERMUTE_ROW(insize, val) -disp(size(val)) + outsize = 3; //if((val(0) == '1') & (val(1) == '2')) // outsize = insize(1); diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.bin Binary files differindex edba674a..28b7fa59 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.sci index ca1d2627..11b245e2 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.sci @@ -1,47 +1,27 @@ function opoutsize = FA_SZ_ROW_COLUMN(in1size,in2size) -// function opoutsize = FA_SZ_OPPLUSA(in1size,in2size) +//function opoutsize = FA_SZ_ROW_COLUMN(in1size,in2size) // ----------------------------------------------------------------- -// Returns the size of the output computed by OPPLUS operator -// restricted to arithmetic operations (string operations not supported.) -// -// Assuming: -// size(in1) = [in1r,in1c] -// size(in2) = [in2r,in2c] -// size(out) = [outr,outc] -// -// we have the following combinations: -// in1 in2 outr outc -// ----------------------- -// S S in2r in2c -// S M in2r in2c -// M S in1r in1c -// M M in1r in1c -// -// Where S means that the input is a scalar -// and M means that the input is a matrix. -// There is also the case related to the string catenation! -// This is the main difference between - and + operators. +// Get size of output for Schur function // // Input data: -// in1size: size of input number 1. It is an array of 2 strings. -// The first string specifies the number of rows. -// The second string specifies the number of columns. -// -// in2size: size of input number 2. It is an array of 2 strings. -// The first string specifies the number of rows. -// The second string specifies the number of columns. +// in2tp: string specifying the type of second input argument. +// in1sz: string specifying the size of first input argument. // // Output data: -// opoutsize: size of output. It is an array of 2 strings. -// The first string specifies the number of rows. -// The second string specifies the number of columns. +// out2sz: string containing the size for second output argument. // -// Status: -// 18-Mar-2008 -- Raffaele Nutricato: Author. -// 18-Mar-2008 -- Alberto Morea: Test Ok. +// Copyright (C) 2017 - IIT Bombay - FOSSEE // -// Copyright 2008 Raffaele Nutricato & Alberto Morea. -// Contact: raffaele.nutricato@tiscali.it +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Mushir +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + // ----------------------------------------------------------------- // ------------------------------ diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.bin Binary files differindex 2373b813..5679bced 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.sci index 5ab0c649..aaca2868 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.sci @@ -1,8 +1,35 @@ function outsize = FA_SZ_ROW_COLUMN_CAT(inval,in1size,in2size)
+//function outsize = FA_SZ_ROW_COLUMN_CAT(inval,in1size,in2size)
+// -----------------------------------------------------------------
+// Get size of row (col) of the output for cat function
+//
+// Input data:
+// inval: string specifying the value of input argument.
+// in1size: string specifying the row (col) of second input
+// in3size: string specifying the row (col) of third input
+// Output data:
+// outsize: string containing the column size for output argument.
+//
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Mushir
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+//
+
+// -----------------------------------------------------------------
+
+// ------------------------------
+// --- Check input arguments. ---
+// ------------------------------
+SCI2CNInArgCheck(argn(1),3,3);
-//Check the input arguments
-SCI2CNInArgCheck(argn(2),3,3);
in1size = string(in1size);
in2size = string(in2size);
inval = string(inval);
diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.bin Binary files differindex 7fc7dcc8..f5f1a236 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.sci index 687a89e4..1417b42b 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.sci @@ -1,21 +1,33 @@ function outsize = FA_SZ_ROW_DIAG(insize) -// function outsize = FA_SZ_1(insize) +//function outsize = FA_SZ_ROW_DIAG(insize) // ----------------------------------------------------------------- -// Returns the first element of the size array. -// +// Get size of row of the output for diag function +// // Input data: -// insize: size of input argument. It is an array of 2 strings. -// The first string specifies the number of rows. -// The second string specifies the number of columns. -// +// insize: string specifying the size of input argument. +// // Output data: -// outsize: first element of the insize array. +// outsize: string containing the row size for output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE // -// Status: -// 08-Dec-2007 -- Raffaele Nutricato: Author. -// 08-Dec-2007 -- Alberto Morea: Test Ok. +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Mushir +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + // ----------------------------------------------------------------- +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(1),1,1); + if(insize(1)=='1') then outsize = insize(2); elseif(insize(1) == insize(2)) diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.bin b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.bin Binary files differindex 046b4b78..e5d8e650 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.sci index 1ec720a9..1dddfb77 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.sci @@ -1,4 +1,33 @@ function outsize = FA_SZ_ROW_DIAG_INS_EXT(insize,val) +//function outsize = FA_SZ_ROW_DIAG_INS_EXT(insize,val) +// ----------------------------------------------------------------- +// Get row size of output for diag(insert) function +// +// Input data: +// insize: string specifying the size of first input argument. +// val: string specifying the value of second input argument. +// +// Output data: +// outsize: string containing the size for output argument. +// +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Mushir +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// + +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(2),2,2); // val ==> Position value ...,-2,-1,0,1,2.... //insize ==> insize(1) will give ROW size and insize(2) will give COLUMN size. @@ -6,7 +35,7 @@ function outsize = FA_SZ_ROW_DIAG_INS_EXT(insize,val) row_num = eval(insize(1)); col_num = eval(insize(2)); val_num = eval(val); - /////////////////////////////////////////////// FOR INSERT CONDITION //////////////////////////////////////////// + ///////////////////// FOR INSERT CONDITION ////////////////////////////// @@ -15,7 +44,8 @@ function outsize = FA_SZ_ROW_DIAG_INS_EXT(insize,val) outsize = string(col_num);// ROW size is equal to COLUMN size else // For ....-2,-1,1,2... positions - outsize = string(col_num+abs(val_num)); //ROW is equal to COLUMN SIZE + position value (i.e for 1*4 matrix and insert position 1 then ROW size is 4+1 = 5 ) + outsize = string(col_num+abs(val_num)); + //ROW is equal to COLUMN SIZE + position value (i.e for 1*4 matrix and insert position 1 then ROW size is 4+1 = 5 ) end elseif(col_num == 1) // if Column size is one @@ -23,14 +53,15 @@ function outsize = FA_SZ_ROW_DIAG_INS_EXT(insize,val) outsize = string(row_num); // ROW size is equal to ROW size else // ....-2,-1,1,2... positions. - outsize = string(row_num + abs(val_num));//ROW is equal to ROW SIZE + position value (i.e for 4*1 matrix and insert position 1 then ROW size is 4+1 = 5 ) + outsize = string(row_num + abs(val_num)); + //ROW is equal to ROW SIZE + position value (i.e for 4*1 matrix and insert position 1 then ROW size is 4+1 = 5 ) end - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////// - ///////////////////////////////////////// FOR EXTRACT CONDITION ///////////////////////////////////////////////// + //////////////////////////// FOR EXTRACT CONDITION ///////////////////////// elseif(row_num == col_num) // For no. of rows equal to no. of column (R == C) if(val_num == 0) then //For 0th position @@ -66,7 +97,7 @@ function outsize = FA_SZ_ROW_DIAG_INS_EXT(insize,val) outsize = string(row_num-abs(val_num)); // row size is substraction of row size and absolute value of position values(-1,-2,-3) end - ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////////////////////////////// end endfunction diff --git a/2.3-1/macros/FunctionAnnotation/FA_TP_CVIMAGE.bin b/2.3-1/macros/FunctionAnnotation/FA_TP_CVIMAGE.bin Binary files differindex 1d824fb3..a7327099 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_TP_CVIMAGE.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_TP_CVIMAGE.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_TP_CVIMAGE.sci b/2.3-1/macros/FunctionAnnotation/FA_TP_CVIMAGE.sci index 1c0d1745..5e87ab81 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_TP_CVIMAGE.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_TP_CVIMAGE.sci @@ -10,10 +10,17 @@ function typeout = FA_TP_CVIMAGE() // Output data: // typeout: string containing the type specifier. // -// Status: +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in // -// Copyright 2007 Raffaele Nutricato & Alberto Morea. -// Contact: raffaele.nutricato@tiscali.it // ----------------------------------------------------------------- // ------------------------------ diff --git a/2.3-1/macros/FunctionAnnotation/FA_TP_INT16.bin b/2.3-1/macros/FunctionAnnotation/FA_TP_INT16.bin Binary files differindex e28e0c5b..fba4305a 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_TP_INT16.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_TP_INT16.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_TP_INT16.sci b/2.3-1/macros/FunctionAnnotation/FA_TP_INT16.sci index 67b81784..b7e25cad 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_TP_INT16.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_TP_INT16.sci @@ -10,10 +10,17 @@ function typeout = FA_TP_INT16() // Output data: // typeout: string containing the type specifier. // -// Status: +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in // -// Copyright 2007 Raffaele Nutricato & Alberto Morea. -// Contact: raffaele.nutricato@tiscali.it // ----------------------------------------------------------------- // ------------------------------ diff --git a/2.3-1/macros/FunctionAnnotation/FA_TP_INT8.bin b/2.3-1/macros/FunctionAnnotation/FA_TP_INT8.bin Binary files differindex 3f5055fb..f67d7485 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_TP_INT8.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_TP_INT8.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_TP_INT8.sci b/2.3-1/macros/FunctionAnnotation/FA_TP_INT8.sci index 49c752bb..f1e2bf26 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_TP_INT8.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_TP_INT8.sci @@ -10,10 +10,17 @@ function typeout = FA_TP_INT8() // Output data: // typeout: string containing the type specifier. // -// Status: +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in // -// Copyright 2007 Raffaele Nutricato & Alberto Morea. -// Contact: raffaele.nutricato@tiscali.it // ----------------------------------------------------------------- // ------------------------------ diff --git a/2.3-1/macros/FunctionAnnotation/FA_TP_UINT16.bin b/2.3-1/macros/FunctionAnnotation/FA_TP_UINT16.bin Binary files differindex 687024f6..dc455ca6 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_TP_UINT16.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_TP_UINT16.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_TP_UINT16.sci b/2.3-1/macros/FunctionAnnotation/FA_TP_UINT16.sci index 5f1c98f7..b77d7751 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_TP_UINT16.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_TP_UINT16.sci @@ -10,10 +10,17 @@ function typeout = FA_TP_UINT16() // Output data: // typeout: string containing the type specifier. // -// Status: +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in // -// Copyright 2007 Raffaele Nutricato & Alberto Morea. -// Contact: raffaele.nutricato@tiscali.it // ----------------------------------------------------------------- // ------------------------------ diff --git a/2.3-1/macros/FunctionAnnotation/FA_TP_UINT8.bin b/2.3-1/macros/FunctionAnnotation/FA_TP_UINT8.bin Binary files differindex 02e74047..508db417 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_TP_UINT8.bin +++ b/2.3-1/macros/FunctionAnnotation/FA_TP_UINT8.bin diff --git a/2.3-1/macros/FunctionAnnotation/FA_TP_UINT8.sci b/2.3-1/macros/FunctionAnnotation/FA_TP_UINT8.sci index 934f3540..f31cde0f 100644 --- a/2.3-1/macros/FunctionAnnotation/FA_TP_UINT8.sci +++ b/2.3-1/macros/FunctionAnnotation/FA_TP_UINT8.sci @@ -10,10 +10,17 @@ function typeout = FA_TP_UINT8() // Output data: // typeout: string containing the type specifier. // -// Status: +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in // -// Copyright 2007 Raffaele Nutricato & Alberto Morea. -// Contact: raffaele.nutricato@tiscali.it // ----------------------------------------------------------------- // ------------------------------ diff --git a/2.3-1/macros/Hardware/RasberryPi/GetRPISupportFunctions.bin b/2.3-1/macros/Hardware/RasberryPi/GetRPISupportFunctions.bin Binary files differindex 0c64927f..a70999c0 100644 --- a/2.3-1/macros/Hardware/RasberryPi/GetRPISupportFunctions.bin +++ b/2.3-1/macros/Hardware/RasberryPi/GetRPISupportFunctions.bin diff --git a/2.3-1/macros/Hardware/RasberryPi/GetRPISupportFunctions.sci b/2.3-1/macros/Hardware/RasberryPi/GetRPISupportFunctions.sci index a791f1e7..3e6397b2 100644 --- a/2.3-1/macros/Hardware/RasberryPi/GetRPISupportFunctions.sci +++ b/2.3-1/macros/Hardware/RasberryPi/GetRPISupportFunctions.sci @@ -7,8 +7,17 @@ function RPiSupportFunctions = GetRPISupportFunctions() // // Output data: // None +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in // -// Author: Siddhesh Wani // ----------------------------------------------------------------- RPiSupportFunctions = [ diff --git a/2.3-1/macros/Hardware/RasberryPi/IsRPISupportFunction.bin b/2.3-1/macros/Hardware/RasberryPi/IsRPISupportFunction.bin Binary files differindex 728e3d80..11533d3e 100644 --- a/2.3-1/macros/Hardware/RasberryPi/IsRPISupportFunction.bin +++ b/2.3-1/macros/Hardware/RasberryPi/IsRPISupportFunction.bin diff --git a/2.3-1/macros/Hardware/RasberryPi/IsRPISupportFunction.sci b/2.3-1/macros/Hardware/RasberryPi/IsRPISupportFunction.sci index 647b0c85..c6a2c365 100644 --- a/2.3-1/macros/Hardware/RasberryPi/IsRPISupportFunction.sci +++ b/2.3-1/macros/Hardware/RasberryPi/IsRPISupportFunction.sci @@ -9,7 +9,17 @@ function Output = IsRPISupportFunction(FunName) // Output: True or False depending whether given function is a RPi // support functions or not // -// Author: Siddhesh Wani +// Copyright (C) 2017 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in +// // ----------------------------------------------------------------- //Get list of supported functions for AVR diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMicro.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMicro.sci index 730755b7..bbb0bb3b 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMicro.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMicro.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_DelayMicro(time) // Function to insert some delay in code execution. // diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMilli.bin b/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMilli.bin Binary files differindex bb8279ec..b6eeb30b 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMilli.bin +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMilli.bin diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMilli.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMilli.sci index c5080dd8..13b79625 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMilli.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_DelayMilli.sci @@ -1,5 +1,13 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_DelayMilli(time) -// Function to insert some delay in code execution. +// Function to insert some delay in milli seconds in code execution. // // Calling Sequence // RPI_DelayMilli(time) @@ -8,7 +16,7 @@ function RPI_DelayMilli(time) // time: time(milliseconds) for which execution is to be delayed // // Description -// this function can be used for insertig execution delays. 'time' should be +// This function can be used for insertig execution delays. 'time' should be // specified in milliseconds. If more resolution is required, use 'RPI_DelayMicro' // for inserting delay in microseconds. // Note: Delay inserted by this function is not accurate, but depedent on diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalIn.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalIn.sci index 4df03f67..781c49c8 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalIn.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalIn.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function state = RPI_DigitalIn(pin) // Function to read current state on digital pins. // diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalOut.bin b/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalOut.bin Binary files differindex d6b6b7bf..b7ad06e5 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalOut.bin +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalOut.bin diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalOut.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalOut.sci index 4836f54f..dde3c934 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalOut.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalOut.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_DigitalOut(pin, state) // Function to output desired state on digital pins. // @@ -20,8 +28,17 @@ function RPI_DigitalOut(pin, state) // Authors // Siddhesh Wani // +// ----------------------------------------------------------------- +//Pins of header P1 which can be used as GPIO +supported_pins = [3,5,7,8,10,11,12,13,15,16,18,19,21,22,23,24,26,27,28,29,... + 31,31,33,35,36,37,38,40]; + +PinIsGPIO = members(pin, supported_pins); //Check if output pin supports GPIO -// This is curretly dummy function. It provides no functionality but is required -// for providing support for generating C code for RPi. +//If given pin does not support GPIO functionality, raise the error +if(PinIsGPIO == 0) + error(9999, 'SCI2CERROR: Given pin number doesnot support GPIO functionality.'); +end +state = 1; endfunction diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalSetup.bin b/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalSetup.bin Binary files differindex 1f20deb2..1ac5b582 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalSetup.bin +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalSetup.bin diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalSetup.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalSetup.sci index 460a4174..01d6e07d 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalSetup.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_DigitalSetup.sci @@ -22,7 +22,8 @@ function RPI_DigitalSetup(pin, direction) // Siddhesh Wani // ----------------------------------------------------------------- //Pins of header P1 which can be used as GPIO -supported_pins = [3,5,7,8,10,11,12,13,15,16,18,19,21,22,23,24,26] +supported_pins = [3,5,7,8,10,11,12,13,15,16,18,19,21,22,23,24,26,27,28,29,... + 31,31,33,35,36,37,38,40]; PinIsGPIO = members(pin, supported_pins); //Check if input pin supports GPIO @@ -30,4 +31,6 @@ PinIsGPIO = members(pin, supported_pins); //Check if input pin supports GPIO if(PinIsGPIO == 0) error(9999, 'SCI2CERROR: Given pin number doesnot support GPIO functionality.'); end +state = 1; + endfunction diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_GetMicros.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_GetMicros.sci index 7f825efd..6c4db57a 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_GetMicros.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_GetMicros.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function Micros = RPI_GetMicros() // Function to get time in Microsecond since first setup function called. // diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_GetMillis.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_GetMillis.sci index b83f5fea..c034a705 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_GetMillis.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_GetMillis.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function Millis = RPI_GetMillis() // Function to get time in millisecond since first setup function called. // diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetClock.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetClock.sci index 3c050306..8448d364 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetClock.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetClock.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_HardPWMSetClock(clock_divisor) // Function to set PWM clock. PWM clock frequency is 19.2MHz, which can be reduced // using suitable clock_divisor (1 to 2048, powers of 2) diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetMode.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetMode.sci index 2ab697bc..57b82601 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetMode.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetMode.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_HardPWMSetMode(pwm_mode) // Function to set PWM mode. Two modes are available - balanced and mark/space // diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetRange.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetRange.sci index cb7dd67d..c2075e2d 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetRange.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMSetRange.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_HardPWMSetRange(range_val) // Function to set range value for PWM. Range value along with clock divisor // decides pwm frequency. Range value must be less than 1024 diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMWrite.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMWrite.sci index 9f9f7977..dba5e674 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMWrite.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_HardPWMWrite.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_HardPWMWrite(pin,value) // Function to change pwm duty on specified pin. Hardware PWM is available // only on pin 12. So, only '12' should be provided as pin diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_PinISR.bin b/2.3-1/macros/Hardware/RasberryPi/RPI_PinISR.bin Binary files differindex a6c0bd98..ddeff684 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_PinISR.bin +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_PinISR.bin diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_PinISR.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_PinISR.sci index 2de7d9e8..c2354c1f 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_PinISR.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_PinISR.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_PinISR(pin, edgetype, fn) // Function to assign a function to be run when an interrupt occurs on // specified pin. @@ -30,7 +38,8 @@ function RPI_PinISR(pin, edgetype, fn) // for providing support for generating C code for RPi. //Pins of header P1 which can be used as GPIO -supported_pins = [3,5,7,8,10,11,12,13,15,16,18,19,21,22,23,24,26] +supported_pins = [3,5,7,8,10,11,12,13,15,16,18,19,21,22,23,24,26,27,28,29,... + 31,31,33,35,36,37,38,40]; PinIsGPIO = members(pin, supported_pins); //Check if input pin supports GPIO @@ -38,7 +47,7 @@ PinIsGPIO = members(pin, supported_pins); //Check if input pin supports GPIO if(PinIsGPIO == 0) error(9999, 'SCI2CERROR: Given pin number doesnot support GPIO functionality.'); end -EdgeTypeSupported = members(edgetype,[1 2 3]) +EdgeTypeSupported = members(edgetype,[1 2 3]); if(EdgeTypeSupported == 0) error(9999, 'SCI2CERROR: Given edgetype is incorrect. Please specify correct edgetype from [1,2,3]') diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialClose.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialClose.sci index 0d393f39..f27dd432 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialClose.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialClose.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_SerialClose(fd) // Function to close serial port specified by file descriptor. // diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialFlush.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialFlush.sci index ffef70b4..9bab386f 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialFlush.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialFlush.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function data = RPI_SerialGetChar(fd) // Function to read data from specified serial port // diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialGetChar.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialGetChar.sci index 0271449d..a26e5b97 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialGetChar.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialGetChar.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function data = RPI_SerialGetChar(fd) // Function to read data from specified serial port // diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSendChar.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSendChar.sci index 82051d66..769b21d2 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSendChar.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSendChar.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_SerialSendChar(fd, data) // Function to send 8-bit char through serial port. // diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSendData.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSendData.sci index 6bfe80d1..c05852b1 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSendData.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSendData.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function RPI_SerialSendData(fd, data) // Function to send data through serial port. Data can be of any datatype and // can be scalar or matrix diff --git a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSetup.sci b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSetup.sci index 25a70a38..0f266610 100644 --- a/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSetup.sci +++ b/2.3-1/macros/Hardware/RasberryPi/RPI_SerialSetup.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function fd = RPI_SerialSetup(port, baudrate) // Function to setup serial port. // diff --git a/2.3-1/macros/Hardware/RasberryPi/u16RPISerialDataAvail.sci b/2.3-1/macros/Hardware/RasberryPi/u16RPISerialDataAvail.sci index 5a291569..6eb29a1c 100644 --- a/2.3-1/macros/Hardware/RasberryPi/u16RPISerialDataAvail.sci +++ b/2.3-1/macros/Hardware/RasberryPi/u16RPISerialDataAvail.sci @@ -1,3 +1,11 @@ +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function bytes = RPI_SerialDataAvail(fd) // Function to get number of data bytes available on serial port specified by // file descriptor diff --git a/2.3-1/macros/ImageProcessing/core/CV_CreateImage.sci b/2.3-1/macros/ImageProcessing/core/CV_CreateImage.sci index 72dd9b8c..02758154 100644 --- a/2.3-1/macros/ImageProcessing/core/CV_CreateImage.sci +++ b/2.3-1/macros/ImageProcessing/core/CV_CreateImage.sci @@ -1,3 +1,14 @@ +// Copyright (C) 2016 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Author: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function img = CV_CreateImage(width,height,bit_depth,no_of_channels) // function to create an image object of given size and type // diff --git a/2.3-1/macros/ImageProcessing/core/CV_GetImgSize.sci b/2.3-1/macros/ImageProcessing/core/CV_GetImgSize.sci index cd7ebdaf..02e018a7 100644 --- a/2.3-1/macros/ImageProcessing/core/CV_GetImgSize.sci +++ b/2.3-1/macros/ImageProcessing/core/CV_GetImgSize.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/highgui/CV_LoadImage.sci b/2.3-1/macros/ImageProcessing/highgui/CV_LoadImage.sci index 93fc49bf..01dda125 100644 --- a/2.3-1/macros/ImageProcessing/highgui/CV_LoadImage.sci +++ b/2.3-1/macros/ImageProcessing/highgui/CV_LoadImage.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/highgui/CV_SaveImage.sci b/2.3-1/macros/ImageProcessing/highgui/CV_SaveImage.sci index 8d5ca160..708edff0 100644 --- a/2.3-1/macros/ImageProcessing/highgui/CV_SaveImage.sci +++ b/2.3-1/macros/ImageProcessing/highgui/CV_SaveImage.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/highgui/CV_ShowImage.sci b/2.3-1/macros/ImageProcessing/highgui/CV_ShowImage.sci index 0864c3f3..4bfe5913 100644 --- a/2.3-1/macros/ImageProcessing/highgui/CV_ShowImage.sci +++ b/2.3-1/macros/ImageProcessing/highgui/CV_ShowImage.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/highgui/CV_WaitKey.sci b/2.3-1/macros/ImageProcessing/highgui/CV_WaitKey.sci index 514bc53f..0facaafe 100644 --- a/2.3-1/macros/ImageProcessing/highgui/CV_WaitKey.sci +++ b/2.3-1/macros/ImageProcessing/highgui/CV_WaitKey.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_AdaptiveThreshold.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_AdaptiveThreshold.sci index 193e7266..a922d798 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_AdaptiveThreshold.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_AdaptiveThreshold.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_Blur.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_Blur.sci index 0486bef5..b81df491 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_Blur.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_Blur.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_Canny.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_Canny.sci index dca5e031..b21028a0 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_Canny.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_Canny.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_CornerHarris.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_CornerHarris.sci index 1b7aabc4..fb25612b 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_CornerHarris.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_CornerHarris.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_CvtColor.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_CvtColor.sci index 220ad5f6..766844bf 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_CvtColor.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_CvtColor.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_Dilate.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_Dilate.sci index d3e3dac3..196cab85 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_Dilate.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_Dilate.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_DistanceTransform.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_DistanceTransform.sci index 8277ddaa..e8772958 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_DistanceTransform.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_DistanceTransform.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_Erode.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_Erode.sci index b2e4b26c..d77e9e69 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_Erode.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_Erode.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_GaussianBlur.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_GaussianBlur.sci index 0f3c003b..0799c4dd 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_GaussianBlur.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_GaussianBlur.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_MedianBlur.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_MedianBlur.sci index 755ad45b..d8f9a900 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_MedianBlur.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_MedianBlur.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/ImageProcessing/imgproc/CV_Threshold.sci b/2.3-1/macros/ImageProcessing/imgproc/CV_Threshold.sci index 343fde53..823a5768 100644 --- a/2.3-1/macros/ImageProcessing/imgproc/CV_Threshold.sci +++ b/2.3-1/macros/ImageProcessing/imgproc/CV_Threshold.sci @@ -5,7 +5,6 @@ // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Author: Siddhesh Wani // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in diff --git a/2.3-1/macros/Scilab-Arduino/GenerateSetupFunction.bin b/2.3-1/macros/Scilab-Arduino/GenerateSetupFunction.bin Binary files differindex ea2bdec3..0051630c 100644 --- a/2.3-1/macros/Scilab-Arduino/GenerateSetupFunction.bin +++ b/2.3-1/macros/Scilab-Arduino/GenerateSetupFunction.bin diff --git a/2.3-1/macros/Scilab-Arduino/GenerateSetupFunction.sci b/2.3-1/macros/Scilab-Arduino/GenerateSetupFunction.sci index 33a515d8..19cf4b88 100644 --- a/2.3-1/macros/Scilab-Arduino/GenerateSetupFunction.sci +++ b/2.3-1/macros/Scilab-Arduino/GenerateSetupFunction.sci @@ -1,5 +1,27 @@ -//Scilab2C IITB FOSSEE +// Copyright (C) 2016 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function GenerateSetupFunction(FileInfo) +// ----------------------------------------------------------------- +// Generate setup functions for Arduino peripherals according to +// entries in given input file +// +// Input data: +// File containing required peripheral initialisation +// +// Output data: +// generates file with setup functions +// +// Author: Siddhesh Wani +// ----------------------------------------------------------------- + SetupListFile = FileInfo.SetupListFile; load(SetupListFile,'SetupList'); diff --git a/2.3-1/macros/Scilab-Arduino/GetArduinoFunctions.sci b/2.3-1/macros/Scilab-Arduino/GetArduinoFunctions.sci index 1af351b6..a112fe6a 100644 --- a/2.3-1/macros/Scilab-Arduino/GetArduinoFunctions.sci +++ b/2.3-1/macros/Scilab-Arduino/GetArduinoFunctions.sci @@ -1,3 +1,13 @@ +// Copyright (C) 2016 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function ArduinoFunctions = GetArduinoFunctions() // ----------------------------------------------------------------- // Get list of Arduino functions supported @@ -12,14 +22,14 @@ function ArduinoFunctions = GetArduinoFunctions() // ----------------------------------------------------------------- ArduinoFunctions = [ - "cmd_digital_out" - "cmd_digital_in" - "cmd_analog_out" - "cmd_analog_in" - "cmd_dcmotor_setup" - "cmd_dcmotor_run" - "cmd_servo_attach" - "cmd_servo_detach" - "cmd_servo_move"]; + "cmd_digital_out" + "cmd_digital_in" + "cmd_analog_out" + "cmd_analog_in" + "cmd_dcmotor_setup" + "cmd_dcmotor_run" + "cmd_servo_attach" + "cmd_servo_detach" + "cmd_servo_move"]; endfunction diff --git a/2.3-1/macros/Scilab-Arduino/GetArduinoSetupFunctions.sci b/2.3-1/macros/Scilab-Arduino/GetArduinoSetupFunctions.sci index c992057b..d2cd0c74 100644 --- a/2.3-1/macros/Scilab-Arduino/GetArduinoSetupFunctions.sci +++ b/2.3-1/macros/Scilab-Arduino/GetArduinoSetupFunctions.sci @@ -1,3 +1,13 @@ +// Copyright (C) 2016 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function ArduinoSetupFunctions = GetArduinoSetupFunctions() // ----------------------------------------------------------------- // Get list of Arduino setup functions supported diff --git a/2.3-1/macros/Scilab-Arduino/InsertSetupInList.bin b/2.3-1/macros/Scilab-Arduino/InsertSetupInList.bin Binary files differindex 44e688c6..29e37315 100644 --- a/2.3-1/macros/Scilab-Arduino/InsertSetupInList.bin +++ b/2.3-1/macros/Scilab-Arduino/InsertSetupInList.bin diff --git a/2.3-1/macros/Scilab-Arduino/InsertSetupInList.sci b/2.3-1/macros/Scilab-Arduino/InsertSetupInList.sci index b73910f2..6584f293 100644 --- a/2.3-1/macros/Scilab-Arduino/InsertSetupInList.sci +++ b/2.3-1/macros/Scilab-Arduino/InsertSetupInList.sci @@ -1,4 +1,29 @@ +// Copyright (C) 2016 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function InsertSetupInList(FunName,InArg,NInArg,SetupListFile,FunType) +// ----------------------------------------------------------------- +// Generate list of setup functions required acorginto peripherals used +// +// Input data: +// FunName: scilab-arduino toolbox function +// InArg: input arguments for above mentioned function +// NInArg: no of input arguments for above mentioned function +// SetupListFile: file containing list of setup functions +// FunType: Gpio function or initialisation function for any other perpheral +// +// Output data: +// List of setup functions for Arduino +// +// Author: Siddhesh Wani +// ----------------------------------------------------------------- load(SetupListFile,'SetupList'); diff --git a/2.3-1/macros/Scilab-Arduino/IsArduinoFunction.sci b/2.3-1/macros/Scilab-Arduino/IsArduinoFunction.sci index de1c770b..d98f5cd5 100644 --- a/2.3-1/macros/Scilab-Arduino/IsArduinoFunction.sci +++ b/2.3-1/macros/Scilab-Arduino/IsArduinoFunction.sci @@ -1,3 +1,13 @@ +// Copyright (C) 2016 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function Output = IsArduinoFunction(FunName) // ----------------------------------------------------------------- // Check whether input function name is an Arduino function or not. diff --git a/2.3-1/macros/Scilab-Arduino/IsArduinoSetupFunction.sci b/2.3-1/macros/Scilab-Arduino/IsArduinoSetupFunction.sci index fae7f625..3e1c18fb 100644 --- a/2.3-1/macros/Scilab-Arduino/IsArduinoSetupFunction.sci +++ b/2.3-1/macros/Scilab-Arduino/IsArduinoSetupFunction.sci @@ -1,3 +1,13 @@ +// Copyright (C) 2016 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function Output = IsArduinoSetupFunction(FunName) // ----------------------------------------------------------------- // Check whether input function name is an Arduino setup function or not. diff --git a/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.bin b/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.bin Binary files differindex bcc63fc2..cb61f236 100644 --- a/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.bin +++ b/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.bin diff --git a/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci b/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci index 4afbbe6d..b9e7d8af 100644 --- a/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci +++ b/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci @@ -5354,40 +5354,6 @@ PrintStringInfo(' Adding Function: '+FunctionName+'.',GeneralReport,'file', INIT_GenAnnFLFunctions(FunctionName,SCI2CLibCAnnFunDir,ClassName,GeneralReport,ExtensionCAnnFun);
INIT_GenAnnFLFunctions(FunctionName,SCI2CLibCFLFunDir,ClassName,GeneralReport,ExtensionCFuncListFun);
-//------------------------------------
-//---- Class PERMUTE -----------------
-//------------------------------------
-//ClassName = 'PERMUTE';
-
-// --- Class Annotation. ---
-//PrintStringInfo(' Adding Class: '+ClassName+'.',GeneralReport,'file','y');
-//ClassFileName = fullfile(SCI2CLibCAnnClsDir,ClassName+ExtensionCAnnCls);
-
-//Arguements specified: initial value, start time, time vector, ode function
-//PrintStringInfo('NIN= 2',ClassFileName,'file','y');
-//PrintStringInfo('NOUT= 1',ClassFileName,'file','y');
-//PrintStringInfo('OUT(1).TP= IN(1).TP',ClassFileName,'file','y');
-//PrintStringInfo('OUT(1).SZ(1)= FA_SZ_PERMUTE_ROW(IN(1).SZ, IN(2).VAL)',ClassFileName,'file','y');
-//PrintStringInfo('OUT(1).SZ(2)= FA_SZ_PERMUTE_COL(IN(1).SZ, IN(2).VAL)',ClassFileName,'file','y');
-
-//ClassFileName = fullfile(SCI2CLibCFLClsDir,ClassName+ExtensionCFuncListCls);
-//PrintStringInfo('d2d2'+ArgSeparator+'d2',ClassFileName,'file','y');
-//PrintStringInfo('s2s2'+ArgSeparator+'s2',ClassFileName,'file','y');
-//PrintStringInfo('u82u82'+ArgSeparator+'u82',ClassFileName,'file','y');
-//PrintStringInfo('i82i82'+ArgSeparator+'i82',ClassFileName,'file','y');
-//PrintStringInfo('u162u162'+ArgSeparator+'u162',ClassFileName,'file','y');
-//PrintStringInfo('i162i162'+ArgSeparator+'i162',ClassFileName,'file','y');
-//PrintStringInfo('s2d2'+ArgSeparator+'s0',ClassFileName,'file','y');
-//PrintStringInfo('u82d2'+ArgSeparator+'u80',ClassFileName,'file','y');
-//PrintStringInfo('i82d2'+ArgSeparator+'i80',ClassFileName,'file','y');
-//PrintStringInfo('u162d2'+ArgSeparator+'u160',ClassFileName,'file','y');
-//PrintStringInfo('i162d2'+ArgSeparator+'i160',ClassFileName,'file','y');
-
-// --- Annotation Function And Function List Function. ---
-//FunctionName = 'permute';
-//PrintStringInfo(' Adding Function: '+FunctionName+'.',GeneralReport,'file','y');
-//INIT_GenAnnFLFunctions(FunctionName,SCI2CLibCAnnFunDir,ClassName,GeneralReport,ExtensionCAnnFun);
-//INIT_GenAnnFLFunctions(FunctionName,SCI2CLibCFLFunDir,ClassName,GeneralReport,ExtensionCFuncListFun);
//------------------------------------
//---- Class DIFF -----------------
diff --git a/2.3-1/macros/findDeps/getAllHeaders.bin b/2.3-1/macros/findDeps/getAllHeaders.bin Binary files differindex 8ba5545f..bb5e9c8e 100644 --- a/2.3-1/macros/findDeps/getAllHeaders.bin +++ b/2.3-1/macros/findDeps/getAllHeaders.bin diff --git a/2.3-1/macros/findDeps/getAllHeaders.sci b/2.3-1/macros/findDeps/getAllHeaders.sci index 50ee358a..175c8dc7 100644 --- a/2.3-1/macros/findDeps/getAllHeaders.sci +++ b/2.3-1/macros/findDeps/getAllHeaders.sci @@ -175,10 +175,10 @@ function allHeaders = getAllHeaders(SharedInfo) "src/c/hardware/avr/includes/AVRPeripheralPWM.h" "src/c/hardware/avr/includes/AVRUtil.h" ]; - + RPi_headers = [ - "src/c/hardware/rasberrypi/libraries/wiringPi/wiringPi.h" - "src/c/hardware/rasberrypi/libraries/wiringPi/wiringSerial.h" + "thirdparty/raspberrypi/includes/wiringPi.h" + "thirdparty/raspberrypi/includes/wiringSerial.h" "src/c/hardware/rasberrypi/includes/RPIPeripheralDigital.h" "src/c/hardware/rasberrypi/includes/RPIPeripheralTiming.h" "src/c/hardware/rasberrypi/includes/RPIPeripheralSerial.h" diff --git a/2.3-1/macros/findDeps/getAllLibraries.bin b/2.3-1/macros/findDeps/getAllLibraries.bin Binary files differindex 718e2b1f..ca1db0c2 100644 --- a/2.3-1/macros/findDeps/getAllLibraries.bin +++ b/2.3-1/macros/findDeps/getAllLibraries.bin diff --git a/2.3-1/macros/findDeps/getAllLibraries.sci b/2.3-1/macros/findDeps/getAllLibraries.sci index 7ac9e5be..79698796 100644 --- a/2.3-1/macros/findDeps/getAllLibraries.sci +++ b/2.3-1/macros/findDeps/getAllLibraries.sci @@ -1,42 +1,62 @@ +// Copyright (C) 2016 - IIT Bombay - FOSSEE +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + function allLibraries = getAllLibraries(SharedInfo) +// ----------------------------------------------------------------- +// Select library files according to target specified +// +// Input data: +// scilab2c SharedInfo structure +// +// Output data: +// returns an array containing file paths for libraries +// +// Author: Siddhesh Wani +// ----------------------------------------------------------------- + Target = SharedInfo.Target; //Library files required for "RasberryPi" target RPi_libs = [ - "src/c/hardware/rasberrypi/libraries/wiringPi/libwiringPi.so" - "src/c/hardware/rasberrypi/libraries/libcblas.a" - "src/c/hardware/rasberrypi/libraries/librefblas.a" - "src/c/hardware/rasberrypi/libraries/liblapack.a" - "src/c/hardware/rasberrypi/libraries/libgfortran.a" - "src/c/hardware/rasberrypi/libraries/libgsl.a" - ]; + "thirdparty/raspberrypi/lib/libwiringPi.so" + "thirdparty/raspberrypi/lib/libcblas.a" + "thirdparty/raspberrypi/lib/librefblas.a" + "thirdparty/raspberrypi/lib/liblapack.a" + "thirdparty/raspberrypi/lib/libgfortran.a" + "thirdparty/raspberrypi/lib/libgsl.a"]; RPi_cvlibs = [ - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_calib3d.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_contrib.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_core.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_features2d.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_flann.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_gpu.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_highgui.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_imgproc.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_legacy.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_ml.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_nonfree.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_objdetect.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_ocl.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_photo.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_stitching.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_superres.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_video.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_videostab.a" - "src/c/hardware/rasberrypi/libraries/opencv/libopencv_ts.a" - "src/c/hardware/rasberrypi/libraries/libjpeg.a" - "src/c/hardware/rasberrypi/libraries/libjasper.a" - "src/c/hardware/rasberrypi/libraries/libpng.a" - "src/c/hardware/rasberrypi/libraries/libIlmImf.a" - "src/c/hardware/rasberrypi/libraries/libzlib.a" - "src/c/hardware/rasberrypi/libraries/libtiff.a" -]; + "thirdparty/raspberrypi/lib/libopencv_calib3d.a" + "thirdparty/raspberrypi/lib/libopencv_contrib.a" + "thirdparty/raspberrypi/lib/libopencv_core.a" + "thirdparty/raspberrypi/lib/libopencv_features2d.a" + "thirdparty/raspberrypi/lib/libopencv_flann.a" + "thirdparty/raspberrypi/lib/libopencv_gpu.a" + "thirdparty/raspberrypi/lib/libopencv_highgui.a" + "thirdparty/raspberrypi/lib/libopencv_imgproc.a" + "thirdparty/raspberrypi/lib/libopencv_legacy.a" + "thirdparty/raspberrypi/lib/libopencv_ml.a" + "thirdparty/raspberrypi/lib/libopencv_nonfree.a" + "thirdparty/raspberrypi/lib/libopencv_objdetect.a" + "thirdparty/raspberrypi/lib/libopencv_ocl.a" + "thirdparty/raspberrypi/lib/libopencv_photo.a" + "thirdparty/raspberrypi/lib/libopencv_stitching.a" + "thirdparty/raspberrypi/lib/libopencv_superres.a" + "thirdparty/raspberrypi/lib/libopencv_video.a" + "thirdparty/raspberrypi/lib/libopencv_videostab.a" + "thirdparty/raspberrypi/lib/libopencv_ts.a" + "thirdparty/raspberrypi/lib/libjpeg.a" + "thirdparty/raspberrypi/lib/libjasper.a" + "thirdparty/raspberrypi/lib/libpng.a" + "thirdparty/raspberrypi/lib/libIlmImf.a" + "thirdparty/raspberrypi/lib/libzlib.a" + "thirdparty/raspberrypi/lib/libtiff.a"]; if Target == "RPi" allLibraries = RPi_libs; diff --git a/2.3-1/macros/findDeps/getArduinoFiles.bin b/2.3-1/macros/findDeps/getArduinoFiles.bin Binary files differindex 651b8f3d..411018b0 100644 --- a/2.3-1/macros/findDeps/getArduinoFiles.bin +++ b/2.3-1/macros/findDeps/getArduinoFiles.bin diff --git a/2.3-1/macros/findDeps/getArduinoFiles.sci b/2.3-1/macros/findDeps/getArduinoFiles.sci index 89033d00..aae8e500 100644 --- a/2.3-1/macros/findDeps/getArduinoFiles.sci +++ b/2.3-1/macros/findDeps/getArduinoFiles.sci @@ -1,16 +1,26 @@ -// -// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab -// Copyright (C) 2009-2009 - DIGITEO - Bruno JOFRET +// Copyright (C) 2016 - IIT Bombay - FOSSEE // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + +function arduinoFiles = getArduinoFiles() +// ----------------------------------------------------------------- +// Returns address of some default arduino files // +// Input data: +// None // +// Output data: +// Returns address of some default arduino files +// +// Author: Siddhesh Wani +// ----------------------------------------------------------------- -function arduinoFiles = getArduinoFiles() arduinoFiles = [ "src/c/scilab-arduino/default_files/setup_arduino.h" "src/c/scilab-arduino/default_files/Makefile" diff --git a/2.3-1/macros/runsci2c.bin b/2.3-1/macros/runsci2c.bin Binary files differindex 253cc785..fc8e8a75 100644 --- a/2.3-1/macros/runsci2c.bin +++ b/2.3-1/macros/runsci2c.bin diff --git a/2.3-1/macros/runsci2c.sci b/2.3-1/macros/runsci2c.sci index 9301421f..0bc3e92c 100644 --- a/2.3-1/macros/runsci2c.sci +++ b/2.3-1/macros/runsci2c.sci @@ -154,7 +154,7 @@ end //Copy folder containing opencv include files in Includes folder
if((Target == 'RPi') & (SharedInfo.OpenCVUsed == %T))
- copyfile(SCI2CHOME + "/" +'src/c/hardware/rasberrypi/libraries/opencv/opencv2/',SCI2COutputPath+"/includes/opencv2")
+ copyfile(SCI2CHOME + "/" +'thirdparty/raspberrypi/includes/opencv2/',SCI2COutputPath+"/includes/opencv2")
end
// --------------------------
diff --git a/2.3-1/src/c/auxiliaryFunctions/abs/i16absa.c b/2.3-1/src/c/auxiliaryFunctions/abs/i16absa.c index ad37cee2..2abedc47 100644 --- a/2.3-1/src/c/auxiliaryFunctions/abs/i16absa.c +++ b/2.3-1/src/c/auxiliaryFunctions/abs/i16absa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "abs.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/abs/i16abss.c b/2.3-1/src/c/auxiliaryFunctions/abs/i16abss.c index 591ab8db..ab478333 100644 --- a/2.3-1/src/c/auxiliaryFunctions/abs/i16abss.c +++ b/2.3-1/src/c/auxiliaryFunctions/abs/i16abss.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "abs.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/abs/i8absa.c b/2.3-1/src/c/auxiliaryFunctions/abs/i8absa.c index 2f015f24..1a646e4a 100644 --- a/2.3-1/src/c/auxiliaryFunctions/abs/i8absa.c +++ b/2.3-1/src/c/auxiliaryFunctions/abs/i8absa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "abs.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/abs/i8abss.c b/2.3-1/src/c/auxiliaryFunctions/abs/i8abss.c index 7c3d707f..2c3e0a04 100644 --- a/2.3-1/src/c/auxiliaryFunctions/abs/i8abss.c +++ b/2.3-1/src/c/auxiliaryFunctions/abs/i8abss.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "abs.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/abs/u16absa.c b/2.3-1/src/c/auxiliaryFunctions/abs/u16absa.c index 5bc1d14a..60c1ed96 100644 --- a/2.3-1/src/c/auxiliaryFunctions/abs/u16absa.c +++ b/2.3-1/src/c/auxiliaryFunctions/abs/u16absa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "abs.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/abs/u16abss.c b/2.3-1/src/c/auxiliaryFunctions/abs/u16abss.c index 056ca80f..2e15d25f 100644 --- a/2.3-1/src/c/auxiliaryFunctions/abs/u16abss.c +++ b/2.3-1/src/c/auxiliaryFunctions/abs/u16abss.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "abs.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/abs/u8absa.c b/2.3-1/src/c/auxiliaryFunctions/abs/u8absa.c index cc649c83..2edd8541 100644 --- a/2.3-1/src/c/auxiliaryFunctions/abs/u8absa.c +++ b/2.3-1/src/c/auxiliaryFunctions/abs/u8absa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "abs.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/abs/u8abss.c b/2.3-1/src/c/auxiliaryFunctions/abs/u8abss.c index 45ea9a51..220e9b8c 100644 --- a/2.3-1/src/c/auxiliaryFunctions/abs/u8abss.c +++ b/2.3-1/src/c/auxiliaryFunctions/abs/u8abss.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "abs.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/find/i16finda.c b/2.3-1/src/c/auxiliaryFunctions/find/i16finda.c index f7bde00d..4dff1020 100644 --- a/2.3-1/src/c/auxiliaryFunctions/find/i16finda.c +++ b/2.3-1/src/c/auxiliaryFunctions/find/i16finda.c @@ -1,15 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ - +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "find.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/find/i8finda.c b/2.3-1/src/c/auxiliaryFunctions/find/i8finda.c index 068c1259..7e633dc1 100644 --- a/2.3-1/src/c/auxiliaryFunctions/find/i8finda.c +++ b/2.3-1/src/c/auxiliaryFunctions/find/i8finda.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "find.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/find/u16finda.c b/2.3-1/src/c/auxiliaryFunctions/find/u16finda.c index 3096d611..2ff57869 100644 --- a/2.3-1/src/c/auxiliaryFunctions/find/u16finda.c +++ b/2.3-1/src/c/auxiliaryFunctions/find/u16finda.c @@ -1,15 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ - +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "find.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/find/u8finda.c b/2.3-1/src/c/auxiliaryFunctions/find/u8finda.c index d571c7c3..e2de81fa 100644 --- a/2.3-1/src/c/auxiliaryFunctions/find/u8finda.c +++ b/2.3-1/src/c/auxiliaryFunctions/find/u8finda.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "find.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/rand/i16randa.c b/2.3-1/src/c/auxiliaryFunctions/rand/i16randa.c index f3d8dd37..b6aa741d 100644 --- a/2.3-1/src/c/auxiliaryFunctions/rand/i16randa.c +++ b/2.3-1/src/c/auxiliaryFunctions/rand/i16randa.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IIT BOMBAY */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "rand.h" void i16randa(double *out,int size) diff --git a/2.3-1/src/c/auxiliaryFunctions/rand/i16rands.c b/2.3-1/src/c/auxiliaryFunctions/rand/i16rands.c index ca2ed9cd..67173d23 100644 --- a/2.3-1/src/c/auxiliaryFunctions/rand/i16rands.c +++ b/2.3-1/src/c/auxiliaryFunctions/rand/i16rands.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IIT Bombay */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "rand.h" #include <stdio.h> diff --git a/2.3-1/src/c/auxiliaryFunctions/rand/i8randa.c b/2.3-1/src/c/auxiliaryFunctions/rand/i8randa.c index d679c65f..68d3ff3b 100644 --- a/2.3-1/src/c/auxiliaryFunctions/rand/i8randa.c +++ b/2.3-1/src/c/auxiliaryFunctions/rand/i8randa.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IIT BOMBAY */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "rand.h" void i8randa(double *out,int size) diff --git a/2.3-1/src/c/auxiliaryFunctions/rand/i8rands.c b/2.3-1/src/c/auxiliaryFunctions/rand/i8rands.c index 55df9093..e9b30a33 100644 --- a/2.3-1/src/c/auxiliaryFunctions/rand/i8rands.c +++ b/2.3-1/src/c/auxiliaryFunctions/rand/i8rands.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IIT Bombay */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "rand.h" #include <stdio.h> diff --git a/2.3-1/src/c/auxiliaryFunctions/rand/u16randa.c b/2.3-1/src/c/auxiliaryFunctions/rand/u16randa.c index f5393369..cfcfb50f 100644 --- a/2.3-1/src/c/auxiliaryFunctions/rand/u16randa.c +++ b/2.3-1/src/c/auxiliaryFunctions/rand/u16randa.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IIT BOMBAY */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "rand.h" void u16randa(double *out,int size) diff --git a/2.3-1/src/c/auxiliaryFunctions/rand/u16rands.c b/2.3-1/src/c/auxiliaryFunctions/rand/u16rands.c index a08d6a8c..2023be4a 100644 --- a/2.3-1/src/c/auxiliaryFunctions/rand/u16rands.c +++ b/2.3-1/src/c/auxiliaryFunctions/rand/u16rands.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IIT Bombay */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "rand.h" #include <stdio.h> diff --git a/2.3-1/src/c/auxiliaryFunctions/rand/u8randa.c b/2.3-1/src/c/auxiliaryFunctions/rand/u8randa.c index 4d7d3f8a..a7fc5836 100644 --- a/2.3-1/src/c/auxiliaryFunctions/rand/u8randa.c +++ b/2.3-1/src/c/auxiliaryFunctions/rand/u8randa.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IIT BOMBAY */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "rand.h" #include<stdio.h> void u8randa(double *out,int size) diff --git a/2.3-1/src/c/auxiliaryFunctions/rand/u8rands.c b/2.3-1/src/c/auxiliaryFunctions/rand/u8rands.c index bdf7f9a5..d03741a4 100644 --- a/2.3-1/src/c/auxiliaryFunctions/rand/u8rands.c +++ b/2.3-1/src/c/auxiliaryFunctions/rand/u8rands.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IIT Bombay */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "rand.h" #include <stdio.h> diff --git a/2.3-1/src/c/auxiliaryFunctions/sign/i16signa.c b/2.3-1/src/c/auxiliaryFunctions/sign/i16signa.c index c1d9e915..a2b61823 100644 --- a/2.3-1/src/c/auxiliaryFunctions/sign/i16signa.c +++ b/2.3-1/src/c/auxiliaryFunctions/sign/i16signa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sign.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/sign/i16signs.c b/2.3-1/src/c/auxiliaryFunctions/sign/i16signs.c index a3a11ab8..b6e70a8a 100644 --- a/2.3-1/src/c/auxiliaryFunctions/sign/i16signs.c +++ b/2.3-1/src/c/auxiliaryFunctions/sign/i16signs.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sign.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/sign/i8signa.c b/2.3-1/src/c/auxiliaryFunctions/sign/i8signa.c index c86e0fb0..3390b042 100644 --- a/2.3-1/src/c/auxiliaryFunctions/sign/i8signa.c +++ b/2.3-1/src/c/auxiliaryFunctions/sign/i8signa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sign.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/sign/i8signs.c b/2.3-1/src/c/auxiliaryFunctions/sign/i8signs.c index ced00a73..4bbefeb3 100644 --- a/2.3-1/src/c/auxiliaryFunctions/sign/i8signs.c +++ b/2.3-1/src/c/auxiliaryFunctions/sign/i8signs.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sign.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/sign/u16signa.c b/2.3-1/src/c/auxiliaryFunctions/sign/u16signa.c index 3cc4f662..b962ee2d 100644 --- a/2.3-1/src/c/auxiliaryFunctions/sign/u16signa.c +++ b/2.3-1/src/c/auxiliaryFunctions/sign/u16signa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sign.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/sign/u16signs.c b/2.3-1/src/c/auxiliaryFunctions/sign/u16signs.c index 7f187227..d04d19cd 100644 --- a/2.3-1/src/c/auxiliaryFunctions/sign/u16signs.c +++ b/2.3-1/src/c/auxiliaryFunctions/sign/u16signs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sign.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/sign/u8signa.c b/2.3-1/src/c/auxiliaryFunctions/sign/u8signa.c index 34021b51..980931ec 100644 --- a/2.3-1/src/c/auxiliaryFunctions/sign/u8signa.c +++ b/2.3-1/src/c/auxiliaryFunctions/sign/u8signa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sign.h" diff --git a/2.3-1/src/c/auxiliaryFunctions/sign/u8signs.c b/2.3-1/src/c/auxiliaryFunctions/sign/u8signs.c index 437da775..69d766b0 100644 --- a/2.3-1/src/c/auxiliaryFunctions/sign/u8signs.c +++ b/2.3-1/src/c/auxiliaryFunctions/sign/u8signs.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sign.h" diff --git a/2.3-1/src/c/elementaryFunctions/bitand/u16bitanda.c b/2.3-1/src/c/elementaryFunctions/bitand/u16bitanda.c index 743161ea..ff92399c 100644 --- a/2.3-1/src/c/elementaryFunctions/bitand/u16bitanda.c +++ b/2.3-1/src/c/elementaryFunctions/bitand/u16bitanda.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "bitand.h" void u16bitanda(uint16* x,uint16* y,int size,uint16* out) diff --git a/2.3-1/src/c/elementaryFunctions/bitand/u16bitands.c b/2.3-1/src/c/elementaryFunctions/bitand/u16bitands.c index 7ba73c15..2fb78d17 100644 --- a/2.3-1/src/c/elementaryFunctions/bitand/u16bitands.c +++ b/2.3-1/src/c/elementaryFunctions/bitand/u16bitands.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "bitand.h" diff --git a/2.3-1/src/c/elementaryFunctions/bitand/u8bitanda.c b/2.3-1/src/c/elementaryFunctions/bitand/u8bitanda.c index e1260a71..1622ec57 100644 --- a/2.3-1/src/c/elementaryFunctions/bitand/u8bitanda.c +++ b/2.3-1/src/c/elementaryFunctions/bitand/u8bitanda.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitand.h" void u8bitanda(uint8* x,uint8* y,int size,uint8* out) diff --git a/2.3-1/src/c/elementaryFunctions/bitand/u8bitands.c b/2.3-1/src/c/elementaryFunctions/bitand/u8bitands.c index eda3ccc6..30dde0fd 100644 --- a/2.3-1/src/c/elementaryFunctions/bitand/u8bitands.c +++ b/2.3-1/src/c/elementaryFunctions/bitand/u8bitands.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitand.h" diff --git a/2.3-1/src/c/elementaryFunctions/bitcmp/u16bitcmpa.c b/2.3-1/src/c/elementaryFunctions/bitcmp/u16bitcmpa.c index 55813712..2d25d8d9 100644 --- a/2.3-1/src/c/elementaryFunctions/bitcmp/u16bitcmpa.c +++ b/2.3-1/src/c/elementaryFunctions/bitcmp/u16bitcmpa.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "bitcmp.h" void u16bitcmpa(uint16 *x,uint16 y,int size,uint16* out) diff --git a/2.3-1/src/c/elementaryFunctions/bitcmp/u16bitcmps.c b/2.3-1/src/c/elementaryFunctions/bitcmp/u16bitcmps.c index fc43b37d..1cc2e296 100644 --- a/2.3-1/src/c/elementaryFunctions/bitcmp/u16bitcmps.c +++ b/2.3-1/src/c/elementaryFunctions/bitcmp/u16bitcmps.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "bitcmp.h" uint16 u16bitcmps(uint16 x,uint16 y) diff --git a/2.3-1/src/c/elementaryFunctions/bitcmp/u8bitcmpa.c b/2.3-1/src/c/elementaryFunctions/bitcmp/u8bitcmpa.c index 67bde285..c368f7d7 100644 --- a/2.3-1/src/c/elementaryFunctions/bitcmp/u8bitcmpa.c +++ b/2.3-1/src/c/elementaryFunctions/bitcmp/u8bitcmpa.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "bitcmp.h" void u8bitcmpa(uint8 *x,uint8 y,int size,uint8* out) diff --git a/2.3-1/src/c/elementaryFunctions/bitcmp/u8bitcmps.c b/2.3-1/src/c/elementaryFunctions/bitcmp/u8bitcmps.c index c3f18b13..9d1affe0 100644 --- a/2.3-1/src/c/elementaryFunctions/bitcmp/u8bitcmps.c +++ b/2.3-1/src/c/elementaryFunctions/bitcmp/u8bitcmps.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "bitcmp.h" uint8 u8bitcmps(uint8 x,uint8 y) diff --git a/2.3-1/src/c/elementaryFunctions/bitget/u16bitgets.c b/2.3-1/src/c/elementaryFunctions/bitget/u16bitgets.c index 20593bff..659d785b 100644 --- a/2.3-1/src/c/elementaryFunctions/bitget/u16bitgets.c +++ b/2.3-1/src/c/elementaryFunctions/bitget/u16bitgets.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitget.h" #include<stdio.h> diff --git a/2.3-1/src/c/elementaryFunctions/bitget/u8bitgets.c b/2.3-1/src/c/elementaryFunctions/bitget/u8bitgets.c index 130bff86..03cc9097 100644 --- a/2.3-1/src/c/elementaryFunctions/bitget/u8bitgets.c +++ b/2.3-1/src/c/elementaryFunctions/bitget/u8bitgets.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "bitget.h" #include<stdio.h> diff --git a/2.3-1/src/c/elementaryFunctions/bitor/u16bitora.c b/2.3-1/src/c/elementaryFunctions/bitor/u16bitora.c index 84722e18..152ab53b 100644 --- a/2.3-1/src/c/elementaryFunctions/bitor/u16bitora.c +++ b/2.3-1/src/c/elementaryFunctions/bitor/u16bitora.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitor.h" void u16bitora(uint16* x,uint16* y,int size,uint16* out) diff --git a/2.3-1/src/c/elementaryFunctions/bitor/u16bitors.c b/2.3-1/src/c/elementaryFunctions/bitor/u16bitors.c index e48e3000..984191ed 100644 --- a/2.3-1/src/c/elementaryFunctions/bitor/u16bitors.c +++ b/2.3-1/src/c/elementaryFunctions/bitor/u16bitors.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitor.h" diff --git a/2.3-1/src/c/elementaryFunctions/bitor/u8bitora.c b/2.3-1/src/c/elementaryFunctions/bitor/u8bitora.c index edda9bba..83d08d50 100644 --- a/2.3-1/src/c/elementaryFunctions/bitor/u8bitora.c +++ b/2.3-1/src/c/elementaryFunctions/bitor/u8bitora.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitor.h" void u8bitora(uint8* x,uint8* y,int size,uint8* out) diff --git a/2.3-1/src/c/elementaryFunctions/bitor/u8bitors.c b/2.3-1/src/c/elementaryFunctions/bitor/u8bitors.c index 56d3540d..9327effe 100644 --- a/2.3-1/src/c/elementaryFunctions/bitor/u8bitors.c +++ b/2.3-1/src/c/elementaryFunctions/bitor/u8bitors.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitor.h" diff --git a/2.3-1/src/c/elementaryFunctions/bitset/u16bitsets.c b/2.3-1/src/c/elementaryFunctions/bitset/u16bitsets.c index ff72be3f..179b7f21 100644 --- a/2.3-1/src/c/elementaryFunctions/bitset/u16bitsets.c +++ b/2.3-1/src/c/elementaryFunctions/bitset/u16bitsets.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitset.h" #include<stdio.h> diff --git a/2.3-1/src/c/elementaryFunctions/bitset/u8bitsets.c b/2.3-1/src/c/elementaryFunctions/bitset/u8bitsets.c index b97a1575..1ff0d16f 100644 --- a/2.3-1/src/c/elementaryFunctions/bitset/u8bitsets.c +++ b/2.3-1/src/c/elementaryFunctions/bitset/u8bitsets.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitset.h" #include<stdio.h> diff --git a/2.3-1/src/c/elementaryFunctions/bitxor/u16bitxora.c b/2.3-1/src/c/elementaryFunctions/bitxor/u16bitxora.c index 6f50f068..413caa60 100644 --- a/2.3-1/src/c/elementaryFunctions/bitxor/u16bitxora.c +++ b/2.3-1/src/c/elementaryFunctions/bitxor/u16bitxora.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitxor.h" void u16bitxora(uint16* x,uint16* y,int size,uint16* out) diff --git a/2.3-1/src/c/elementaryFunctions/bitxor/u16bitxors.c b/2.3-1/src/c/elementaryFunctions/bitxor/u16bitxors.c index 03ca8f83..b60fbb67 100644 --- a/2.3-1/src/c/elementaryFunctions/bitxor/u16bitxors.c +++ b/2.3-1/src/c/elementaryFunctions/bitxor/u16bitxors.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitxor.h" diff --git a/2.3-1/src/c/elementaryFunctions/bitxor/u8bitxora.c b/2.3-1/src/c/elementaryFunctions/bitxor/u8bitxora.c index ad7cc24e..7463487e 100644 --- a/2.3-1/src/c/elementaryFunctions/bitxor/u8bitxora.c +++ b/2.3-1/src/c/elementaryFunctions/bitxor/u8bitxora.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitxor.h" void u8bitxora(uint8* x,uint8* y,int size,uint8* out) diff --git a/2.3-1/src/c/elementaryFunctions/bitxor/u8bitxors.c b/2.3-1/src/c/elementaryFunctions/bitxor/u8bitxors.c index 9a346eee..338f5482 100644 --- a/2.3-1/src/c/elementaryFunctions/bitxor/u8bitxors.c +++ b/2.3-1/src/c/elementaryFunctions/bitxor/u8bitxors.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "bitxor.h" diff --git a/2.3-1/src/c/elementaryFunctions/ceil/i16ceila.c b/2.3-1/src/c/elementaryFunctions/ceil/i16ceila.c index a960fa82..7b639e22 100644 --- a/2.3-1/src/c/elementaryFunctions/ceil/i16ceila.c +++ b/2.3-1/src/c/elementaryFunctions/ceil/i16ceila.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "ceil.h" diff --git a/2.3-1/src/c/elementaryFunctions/ceil/i16ceils.c b/2.3-1/src/c/elementaryFunctions/ceil/i16ceils.c index 2dee9838..0b13c7e7 100644 --- a/2.3-1/src/c/elementaryFunctions/ceil/i16ceils.c +++ b/2.3-1/src/c/elementaryFunctions/ceil/i16ceils.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "ceil.h" diff --git a/2.3-1/src/c/elementaryFunctions/ceil/i8ceila.c b/2.3-1/src/c/elementaryFunctions/ceil/i8ceila.c index 33081748..aab8f78f 100644 --- a/2.3-1/src/c/elementaryFunctions/ceil/i8ceila.c +++ b/2.3-1/src/c/elementaryFunctions/ceil/i8ceila.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "ceil.h" diff --git a/2.3-1/src/c/elementaryFunctions/ceil/i8ceils.c b/2.3-1/src/c/elementaryFunctions/ceil/i8ceils.c index e87bd61a..901f87c6 100644 --- a/2.3-1/src/c/elementaryFunctions/ceil/i8ceils.c +++ b/2.3-1/src/c/elementaryFunctions/ceil/i8ceils.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "ceil.h" diff --git a/2.3-1/src/c/elementaryFunctions/ceil/u16ceila.c b/2.3-1/src/c/elementaryFunctions/ceil/u16ceila.c index c7e83df6..cde894dc 100644 --- a/2.3-1/src/c/elementaryFunctions/ceil/u16ceila.c +++ b/2.3-1/src/c/elementaryFunctions/ceil/u16ceila.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "ceil.h" diff --git a/2.3-1/src/c/elementaryFunctions/ceil/u16ceils.c b/2.3-1/src/c/elementaryFunctions/ceil/u16ceils.c index 4632eec7..1110b4b1 100644 --- a/2.3-1/src/c/elementaryFunctions/ceil/u16ceils.c +++ b/2.3-1/src/c/elementaryFunctions/ceil/u16ceils.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "ceil.h" diff --git a/2.3-1/src/c/elementaryFunctions/ceil/u8ceila.c b/2.3-1/src/c/elementaryFunctions/ceil/u8ceila.c index 3bb4ca91..3d05a504 100644 --- a/2.3-1/src/c/elementaryFunctions/ceil/u8ceila.c +++ b/2.3-1/src/c/elementaryFunctions/ceil/u8ceila.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "ceil.h" diff --git a/2.3-1/src/c/elementaryFunctions/ceil/u8ceils.c b/2.3-1/src/c/elementaryFunctions/ceil/u8ceils.c index 7f28bba2..c1ba0b0a 100644 --- a/2.3-1/src/c/elementaryFunctions/ceil/u8ceils.c +++ b/2.3-1/src/c/elementaryFunctions/ceil/u8ceils.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "ceil.h" diff --git a/2.3-1/src/c/elementaryFunctions/cos/i16cosa.c b/2.3-1/src/c/elementaryFunctions/cos/i16cosa.c index fb3c6371..426eeabc 100644 --- a/2.3-1/src/c/elementaryFunctions/cos/i16cosa.c +++ b/2.3-1/src/c/elementaryFunctions/cos/i16cosa.c @@ -1,15 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cos.h" void i16cosa(int16* x, int size, float* y) { diff --git a/2.3-1/src/c/elementaryFunctions/cos/i16coss.c b/2.3-1/src/c/elementaryFunctions/cos/i16coss.c index a46f8e29..ce345d72 100644 --- a/2.3-1/src/c/elementaryFunctions/cos/i16coss.c +++ b/2.3-1/src/c/elementaryFunctions/cos/i16coss.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "cos.h" diff --git a/2.3-1/src/c/elementaryFunctions/cos/i8cosa.c b/2.3-1/src/c/elementaryFunctions/cos/i8cosa.c index 7517b318..2f0053c8 100644 --- a/2.3-1/src/c/elementaryFunctions/cos/i8cosa.c +++ b/2.3-1/src/c/elementaryFunctions/cos/i8cosa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cos.h" diff --git a/2.3-1/src/c/elementaryFunctions/cos/i8coss.c b/2.3-1/src/c/elementaryFunctions/cos/i8coss.c index cd09e066..02d8216f 100644 --- a/2.3-1/src/c/elementaryFunctions/cos/i8coss.c +++ b/2.3-1/src/c/elementaryFunctions/cos/i8coss.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "cos.h" diff --git a/2.3-1/src/c/elementaryFunctions/cos/u16cosa.c b/2.3-1/src/c/elementaryFunctions/cos/u16cosa.c index 63bbdae4..6e752e2b 100644 --- a/2.3-1/src/c/elementaryFunctions/cos/u16cosa.c +++ b/2.3-1/src/c/elementaryFunctions/cos/u16cosa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cos.h" diff --git a/2.3-1/src/c/elementaryFunctions/cos/u16coss.c b/2.3-1/src/c/elementaryFunctions/cos/u16coss.c index 95971fee..c4c86165 100644 --- a/2.3-1/src/c/elementaryFunctions/cos/u16coss.c +++ b/2.3-1/src/c/elementaryFunctions/cos/u16coss.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "cos.h" diff --git a/2.3-1/src/c/elementaryFunctions/cos/u8cosa.c b/2.3-1/src/c/elementaryFunctions/cos/u8cosa.c index 25de95ed..ad129e12 100644 --- a/2.3-1/src/c/elementaryFunctions/cos/u8cosa.c +++ b/2.3-1/src/c/elementaryFunctions/cos/u8cosa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cos.h" diff --git a/2.3-1/src/c/elementaryFunctions/cos/u8coss.c b/2.3-1/src/c/elementaryFunctions/cos/u8coss.c index 9ee1186b..30400c12 100644 --- a/2.3-1/src/c/elementaryFunctions/cos/u8coss.c +++ b/2.3-1/src/c/elementaryFunctions/cos/u8coss.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "cos.h" diff --git a/2.3-1/src/c/elementaryFunctions/cosh/i16cosha.c b/2.3-1/src/c/elementaryFunctions/cosh/i16cosha.c index eb2e9f93..edb56f9c 100644 --- a/2.3-1/src/c/elementaryFunctions/cosh/i16cosha.c +++ b/2.3-1/src/c/elementaryFunctions/cosh/i16cosha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cosh.h" diff --git a/2.3-1/src/c/elementaryFunctions/cosh/i16coshs.c b/2.3-1/src/c/elementaryFunctions/cosh/i16coshs.c index 7d6084ff..10d3eb95 100644 --- a/2.3-1/src/c/elementaryFunctions/cosh/i16coshs.c +++ b/2.3-1/src/c/elementaryFunctions/cosh/i16coshs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ /* // cosh(z) = 0.5 (exp(|z|) + exp(-|z|)) diff --git a/2.3-1/src/c/elementaryFunctions/cosh/i8cosha.c b/2.3-1/src/c/elementaryFunctions/cosh/i8cosha.c index beed9b30..4ec75920 100644 --- a/2.3-1/src/c/elementaryFunctions/cosh/i8cosha.c +++ b/2.3-1/src/c/elementaryFunctions/cosh/i8cosha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cosh.h" diff --git a/2.3-1/src/c/elementaryFunctions/cosh/i8coshs.c b/2.3-1/src/c/elementaryFunctions/cosh/i8coshs.c index 885d1190..bc301221 100644 --- a/2.3-1/src/c/elementaryFunctions/cosh/i8coshs.c +++ b/2.3-1/src/c/elementaryFunctions/cosh/i8coshs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ /* // cosh(z) = 0.5 (exp(|z|) + exp(-|z|)) diff --git a/2.3-1/src/c/elementaryFunctions/cosh/u16cosha.c b/2.3-1/src/c/elementaryFunctions/cosh/u16cosha.c index e0c41836..83d3786c 100644 --- a/2.3-1/src/c/elementaryFunctions/cosh/u16cosha.c +++ b/2.3-1/src/c/elementaryFunctions/cosh/u16cosha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cosh.h" diff --git a/2.3-1/src/c/elementaryFunctions/cosh/u16coshs.c b/2.3-1/src/c/elementaryFunctions/cosh/u16coshs.c index 5637bb3c..22f6ded0 100644 --- a/2.3-1/src/c/elementaryFunctions/cosh/u16coshs.c +++ b/2.3-1/src/c/elementaryFunctions/cosh/u16coshs.c @@ -1,14 +1,13 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ /* // cosh(z) = 0.5 (exp(|z|) + exp(-|z|)) diff --git a/2.3-1/src/c/elementaryFunctions/cosh/u8cosha.c b/2.3-1/src/c/elementaryFunctions/cosh/u8cosha.c index 9584b3e0..4b44c28b 100644 --- a/2.3-1/src/c/elementaryFunctions/cosh/u8cosha.c +++ b/2.3-1/src/c/elementaryFunctions/cosh/u8cosha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cosh.h" diff --git a/2.3-1/src/c/elementaryFunctions/cosh/u8coshs.c b/2.3-1/src/c/elementaryFunctions/cosh/u8coshs.c index 7a6715ff..bed1eb93 100644 --- a/2.3-1/src/c/elementaryFunctions/cosh/u8coshs.c +++ b/2.3-1/src/c/elementaryFunctions/cosh/u8coshs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ /* // cosh(z) = 0.5 (exp(|z|) + exp(-|z|)) diff --git a/2.3-1/src/c/elementaryFunctions/exp/i16expa.c b/2.3-1/src/c/elementaryFunctions/exp/i16expa.c index faa8a120..cd66c85c 100644 --- a/2.3-1/src/c/elementaryFunctions/exp/i16expa.c +++ b/2.3-1/src/c/elementaryFunctions/exp/i16expa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "exp.h" diff --git a/2.3-1/src/c/elementaryFunctions/exp/i16exps.c b/2.3-1/src/c/elementaryFunctions/exp/i16exps.c index 97b57d96..12e85ee4 100644 --- a/2.3-1/src/c/elementaryFunctions/exp/i16exps.c +++ b/2.3-1/src/c/elementaryFunctions/exp/i16exps.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "exp.h" diff --git a/2.3-1/src/c/elementaryFunctions/exp/i8expa.c b/2.3-1/src/c/elementaryFunctions/exp/i8expa.c index 7f731fc9..e45becbd 100644 --- a/2.3-1/src/c/elementaryFunctions/exp/i8expa.c +++ b/2.3-1/src/c/elementaryFunctions/exp/i8expa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "exp.h" diff --git a/2.3-1/src/c/elementaryFunctions/exp/i8exps.c b/2.3-1/src/c/elementaryFunctions/exp/i8exps.c index 6f2d43cc..8d33d203 100644 --- a/2.3-1/src/c/elementaryFunctions/exp/i8exps.c +++ b/2.3-1/src/c/elementaryFunctions/exp/i8exps.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "exp.h" diff --git a/2.3-1/src/c/elementaryFunctions/exp/u16expa.c b/2.3-1/src/c/elementaryFunctions/exp/u16expa.c index 0426ab46..1655dfe9 100644 --- a/2.3-1/src/c/elementaryFunctions/exp/u16expa.c +++ b/2.3-1/src/c/elementaryFunctions/exp/u16expa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "exp.h" diff --git a/2.3-1/src/c/elementaryFunctions/exp/u16exps.c b/2.3-1/src/c/elementaryFunctions/exp/u16exps.c index 64f5c5bf..d36cf1ef 100644 --- a/2.3-1/src/c/elementaryFunctions/exp/u16exps.c +++ b/2.3-1/src/c/elementaryFunctions/exp/u16exps.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include <math.h> #include "exp.h" diff --git a/2.3-1/src/c/elementaryFunctions/exp/u8expa.c b/2.3-1/src/c/elementaryFunctions/exp/u8expa.c index bd90e04b..828fb3da 100644 --- a/2.3-1/src/c/elementaryFunctions/exp/u8expa.c +++ b/2.3-1/src/c/elementaryFunctions/exp/u8expa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "exp.h" diff --git a/2.3-1/src/c/elementaryFunctions/exp/u8exps.c b/2.3-1/src/c/elementaryFunctions/exp/u8exps.c index e48953fa..cae731a2 100644 --- a/2.3-1/src/c/elementaryFunctions/exp/u8exps.c +++ b/2.3-1/src/c/elementaryFunctions/exp/u8exps.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "exp.h" diff --git a/2.3-1/src/c/elementaryFunctions/fix/i16fixa.c b/2.3-1/src/c/elementaryFunctions/fix/i16fixa.c index 2ccb9338..07cd75b0 100644 --- a/2.3-1/src/c/elementaryFunctions/fix/i16fixa.c +++ b/2.3-1/src/c/elementaryFunctions/fix/i16fixa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "fix.h" diff --git a/2.3-1/src/c/elementaryFunctions/fix/i16fixs.c b/2.3-1/src/c/elementaryFunctions/fix/i16fixs.c index 5a13ca04..f133d8a3 100644 --- a/2.3-1/src/c/elementaryFunctions/fix/i16fixs.c +++ b/2.3-1/src/c/elementaryFunctions/fix/i16fixs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "fix.h" diff --git a/2.3-1/src/c/elementaryFunctions/fix/i8fixa.c b/2.3-1/src/c/elementaryFunctions/fix/i8fixa.c index 4e913a3b..bb20f2d3 100644 --- a/2.3-1/src/c/elementaryFunctions/fix/i8fixa.c +++ b/2.3-1/src/c/elementaryFunctions/fix/i8fixa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "fix.h" diff --git a/2.3-1/src/c/elementaryFunctions/fix/i8fixs.c b/2.3-1/src/c/elementaryFunctions/fix/i8fixs.c index ae331ffb..adeb3dd0 100644 --- a/2.3-1/src/c/elementaryFunctions/fix/i8fixs.c +++ b/2.3-1/src/c/elementaryFunctions/fix/i8fixs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "fix.h" diff --git a/2.3-1/src/c/elementaryFunctions/fix/u16fixa.c b/2.3-1/src/c/elementaryFunctions/fix/u16fixa.c index 57983002..acddf8df 100644 --- a/2.3-1/src/c/elementaryFunctions/fix/u16fixa.c +++ b/2.3-1/src/c/elementaryFunctions/fix/u16fixa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "fix.h" diff --git a/2.3-1/src/c/elementaryFunctions/fix/u16fixs.c b/2.3-1/src/c/elementaryFunctions/fix/u16fixs.c index cf178479..1ff7a8a5 100644 --- a/2.3-1/src/c/elementaryFunctions/fix/u16fixs.c +++ b/2.3-1/src/c/elementaryFunctions/fix/u16fixs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "fix.h" diff --git a/2.3-1/src/c/elementaryFunctions/fix/u8fixa.c b/2.3-1/src/c/elementaryFunctions/fix/u8fixa.c index 2a3bd3b2..c86545b9 100644 --- a/2.3-1/src/c/elementaryFunctions/fix/u8fixa.c +++ b/2.3-1/src/c/elementaryFunctions/fix/u8fixa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "fix.h" diff --git a/2.3-1/src/c/elementaryFunctions/fix/u8fixs.c b/2.3-1/src/c/elementaryFunctions/fix/u8fixs.c index 563bfe9a..c7740045 100644 --- a/2.3-1/src/c/elementaryFunctions/fix/u8fixs.c +++ b/2.3-1/src/c/elementaryFunctions/fix/u8fixs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "fix.h" diff --git a/2.3-1/src/c/elementaryFunctions/floor/i16floora.c b/2.3-1/src/c/elementaryFunctions/floor/i16floora.c index 69140b02..7b7a211b 100644 --- a/2.3-1/src/c/elementaryFunctions/floor/i16floora.c +++ b/2.3-1/src/c/elementaryFunctions/floor/i16floora.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "floor.h" diff --git a/2.3-1/src/c/elementaryFunctions/floor/i16floors.c b/2.3-1/src/c/elementaryFunctions/floor/i16floors.c index 428a745a..cc35cf9a 100644 --- a/2.3-1/src/c/elementaryFunctions/floor/i16floors.c +++ b/2.3-1/src/c/elementaryFunctions/floor/i16floors.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "floor.h" diff --git a/2.3-1/src/c/elementaryFunctions/floor/i8floora.c b/2.3-1/src/c/elementaryFunctions/floor/i8floora.c index 0554f1e0..5579321a 100644 --- a/2.3-1/src/c/elementaryFunctions/floor/i8floora.c +++ b/2.3-1/src/c/elementaryFunctions/floor/i8floora.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "floor.h" diff --git a/2.3-1/src/c/elementaryFunctions/floor/i8floors.c b/2.3-1/src/c/elementaryFunctions/floor/i8floors.c index e78dfa13..30967cdc 100644 --- a/2.3-1/src/c/elementaryFunctions/floor/i8floors.c +++ b/2.3-1/src/c/elementaryFunctions/floor/i8floors.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "floor.h" diff --git a/2.3-1/src/c/elementaryFunctions/floor/u16floora.c b/2.3-1/src/c/elementaryFunctions/floor/u16floora.c index 56e35ca8..abff8077 100644 --- a/2.3-1/src/c/elementaryFunctions/floor/u16floora.c +++ b/2.3-1/src/c/elementaryFunctions/floor/u16floora.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "floor.h" diff --git a/2.3-1/src/c/elementaryFunctions/floor/u16floors.c b/2.3-1/src/c/elementaryFunctions/floor/u16floors.c index 65455c18..a1fca9b5 100644 --- a/2.3-1/src/c/elementaryFunctions/floor/u16floors.c +++ b/2.3-1/src/c/elementaryFunctions/floor/u16floors.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "floor.h" diff --git a/2.3-1/src/c/elementaryFunctions/floor/u8floora.c b/2.3-1/src/c/elementaryFunctions/floor/u8floora.c index ace7ff78..04a980e9 100644 --- a/2.3-1/src/c/elementaryFunctions/floor/u8floora.c +++ b/2.3-1/src/c/elementaryFunctions/floor/u8floora.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "floor.h" diff --git a/2.3-1/src/c/elementaryFunctions/floor/u8floors.c b/2.3-1/src/c/elementaryFunctions/floor/u8floors.c index efb2e8c0..87a4e1fd 100644 --- a/2.3-1/src/c/elementaryFunctions/floor/u8floors.c +++ b/2.3-1/src/c/elementaryFunctions/floor/u8floors.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "floor.h" diff --git a/2.3-1/src/c/elementaryFunctions/includes/bitand.h b/2.3-1/src/c/elementaryFunctions/includes/bitand.h index f411e05b..ee132625 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/bitand.h +++ b/2.3-1/src/c/elementaryFunctions/includes/bitand.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __BITAND_H__ #define __BITAND_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/bitcmp.h b/2.3-1/src/c/elementaryFunctions/includes/bitcmp.h index aa182659..ead0b827 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/bitcmp.h +++ b/2.3-1/src/c/elementaryFunctions/includes/bitcmp.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __BITCMP_H__ #define __BITCMP_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/bitget.h b/2.3-1/src/c/elementaryFunctions/includes/bitget.h index 47191558..9e12abdc 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/bitget.h +++ b/2.3-1/src/c/elementaryFunctions/includes/bitget.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __BITGET_H__ #define __BITGET_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/bitor.h b/2.3-1/src/c/elementaryFunctions/includes/bitor.h index d915ffae..3f2ae085 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/bitor.h +++ b/2.3-1/src/c/elementaryFunctions/includes/bitor.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __BITOR_H__ #define __BITOR_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/bitset.h b/2.3-1/src/c/elementaryFunctions/includes/bitset.h index 52f9f2cf..5d519de9 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/bitset.h +++ b/2.3-1/src/c/elementaryFunctions/includes/bitset.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __BITSET_H__ #define __BITSET_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/bitxor.h b/2.3-1/src/c/elementaryFunctions/includes/bitxor.h index 3bc77a2e..5d429571 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/bitxor.h +++ b/2.3-1/src/c/elementaryFunctions/includes/bitxor.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __BITXOR_H__ #define __BITXOR_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/int16.h b/2.3-1/src/c/elementaryFunctions/includes/int16.h index 8c8204f1..6135e6b0 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/int16.h +++ b/2.3-1/src/c/elementaryFunctions/includes/int16.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT16_H__ #define __INT16_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/int8.h b/2.3-1/src/c/elementaryFunctions/includes/int8.h index 795190e2..0ac8723f 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/int8.h +++ b/2.3-1/src/c/elementaryFunctions/includes/int8.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT8_H__ #define __INT8_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/linspace.h b/2.3-1/src/c/elementaryFunctions/includes/linspace.h index 837d839d..92fe10e5 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/linspace.h +++ b/2.3-1/src/c/elementaryFunctions/includes/linspace.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __LINSPACE_H__ #define __LINSPACE_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/logspace.h b/2.3-1/src/c/elementaryFunctions/includes/logspace.h index 1f73402b..eee39de7 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/logspace.h +++ b/2.3-1/src/c/elementaryFunctions/includes/logspace.h @@ -1,6 +1,14 @@ -/* -SCilab2C FOSSEE IIT Bombay - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __LOGSPACE_H__ #define __LOGSPACE_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/uint16.h b/2.3-1/src/c/elementaryFunctions/includes/uint16.h index 98625e62..9e162130 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/uint16.h +++ b/2.3-1/src/c/elementaryFunctions/includes/uint16.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __UINT16_H__ #define __UINT16_H__ diff --git a/2.3-1/src/c/elementaryFunctions/includes/uint8.h b/2.3-1/src/c/elementaryFunctions/includes/uint8.h index 264230aa..63071c4a 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/uint8.h +++ b/2.3-1/src/c/elementaryFunctions/includes/uint8.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __UINT8_H__ #define __UINT8_H__ diff --git a/2.3-1/src/c/elementaryFunctions/int16/dint16a.c b/2.3-1/src/c/elementaryFunctions/int16/dint16a.c index 73c9ec74..e3b96116 100644 --- a/2.3-1/src/c/elementaryFunctions/int16/dint16a.c +++ b/2.3-1/src/c/elementaryFunctions/int16/dint16a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int16.h" diff --git a/2.3-1/src/c/elementaryFunctions/int16/dint16s.c b/2.3-1/src/c/elementaryFunctions/int16/dint16s.c index 76ee96b3..6f09631a 100644 --- a/2.3-1/src/c/elementaryFunctions/int16/dint16s.c +++ b/2.3-1/src/c/elementaryFunctions/int16/dint16s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int16.h" diff --git a/2.3-1/src/c/elementaryFunctions/int16/i8int16a.c b/2.3-1/src/c/elementaryFunctions/int16/i8int16a.c index 82c637c6..0885b021 100644 --- a/2.3-1/src/c/elementaryFunctions/int16/i8int16a.c +++ b/2.3-1/src/c/elementaryFunctions/int16/i8int16a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int16.h" diff --git a/2.3-1/src/c/elementaryFunctions/int16/i8int16s.c b/2.3-1/src/c/elementaryFunctions/int16/i8int16s.c index a7a23796..4a42acc0 100644 --- a/2.3-1/src/c/elementaryFunctions/int16/i8int16s.c +++ b/2.3-1/src/c/elementaryFunctions/int16/i8int16s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int16.h" diff --git a/2.3-1/src/c/elementaryFunctions/int16/sint16a.c b/2.3-1/src/c/elementaryFunctions/int16/sint16a.c index 33058ea7..9769127b 100644 --- a/2.3-1/src/c/elementaryFunctions/int16/sint16a.c +++ b/2.3-1/src/c/elementaryFunctions/int16/sint16a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int16.h" diff --git a/2.3-1/src/c/elementaryFunctions/int16/sint16s.c b/2.3-1/src/c/elementaryFunctions/int16/sint16s.c index 4634a39d..2dd7af27 100644 --- a/2.3-1/src/c/elementaryFunctions/int16/sint16s.c +++ b/2.3-1/src/c/elementaryFunctions/int16/sint16s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int16.h" diff --git a/2.3-1/src/c/elementaryFunctions/int16/u16int16a.c b/2.3-1/src/c/elementaryFunctions/int16/u16int16a.c index e6756d3b..bc631988 100644 --- a/2.3-1/src/c/elementaryFunctions/int16/u16int16a.c +++ b/2.3-1/src/c/elementaryFunctions/int16/u16int16a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int16.h" diff --git a/2.3-1/src/c/elementaryFunctions/int16/u16int16s.c b/2.3-1/src/c/elementaryFunctions/int16/u16int16s.c index 26f32b25..ad226dba 100644 --- a/2.3-1/src/c/elementaryFunctions/int16/u16int16s.c +++ b/2.3-1/src/c/elementaryFunctions/int16/u16int16s.c @@ -1,15 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ - +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "int16.h" diff --git a/2.3-1/src/c/elementaryFunctions/int16/u8int16a.c b/2.3-1/src/c/elementaryFunctions/int16/u8int16a.c index 8ed290a6..8c9f94b0 100644 --- a/2.3-1/src/c/elementaryFunctions/int16/u8int16a.c +++ b/2.3-1/src/c/elementaryFunctions/int16/u8int16a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int16.h" diff --git a/2.3-1/src/c/elementaryFunctions/int16/u8int16s.c b/2.3-1/src/c/elementaryFunctions/int16/u8int16s.c index 29132afd..463565f1 100644 --- a/2.3-1/src/c/elementaryFunctions/int16/u8int16s.c +++ b/2.3-1/src/c/elementaryFunctions/int16/u8int16s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int16.h" diff --git a/2.3-1/src/c/elementaryFunctions/int8/dint8a.c b/2.3-1/src/c/elementaryFunctions/int8/dint8a.c index 719d6f42..035ea4f1 100644 --- a/2.3-1/src/c/elementaryFunctions/int8/dint8a.c +++ b/2.3-1/src/c/elementaryFunctions/int8/dint8a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int8.h" diff --git a/2.3-1/src/c/elementaryFunctions/int8/dint8s.c b/2.3-1/src/c/elementaryFunctions/int8/dint8s.c index f1789e6a..3b554141 100644 --- a/2.3-1/src/c/elementaryFunctions/int8/dint8s.c +++ b/2.3-1/src/c/elementaryFunctions/int8/dint8s.c @@ -1,15 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ - +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int8.h" diff --git a/2.3-1/src/c/elementaryFunctions/int8/i16int8a.c b/2.3-1/src/c/elementaryFunctions/int8/i16int8a.c index 311b7513..b9aa0931 100644 --- a/2.3-1/src/c/elementaryFunctions/int8/i16int8a.c +++ b/2.3-1/src/c/elementaryFunctions/int8/i16int8a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int8.h" diff --git a/2.3-1/src/c/elementaryFunctions/int8/i16int8s.c b/2.3-1/src/c/elementaryFunctions/int8/i16int8s.c index e66b35db..1bdd1764 100644 --- a/2.3-1/src/c/elementaryFunctions/int8/i16int8s.c +++ b/2.3-1/src/c/elementaryFunctions/int8/i16int8s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int8.h" diff --git a/2.3-1/src/c/elementaryFunctions/int8/sint8a.c b/2.3-1/src/c/elementaryFunctions/int8/sint8a.c index 87846a71..4a04a4b0 100644 --- a/2.3-1/src/c/elementaryFunctions/int8/sint8a.c +++ b/2.3-1/src/c/elementaryFunctions/int8/sint8a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int8.h" diff --git a/2.3-1/src/c/elementaryFunctions/int8/sint8s.c b/2.3-1/src/c/elementaryFunctions/int8/sint8s.c index 89d4b819..6e4093e1 100644 --- a/2.3-1/src/c/elementaryFunctions/int8/sint8s.c +++ b/2.3-1/src/c/elementaryFunctions/int8/sint8s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int8.h" diff --git a/2.3-1/src/c/elementaryFunctions/int8/u16int8a.c b/2.3-1/src/c/elementaryFunctions/int8/u16int8a.c index 3db0c926..958dcb7c 100644 --- a/2.3-1/src/c/elementaryFunctions/int8/u16int8a.c +++ b/2.3-1/src/c/elementaryFunctions/int8/u16int8a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int8.h" diff --git a/2.3-1/src/c/elementaryFunctions/int8/u16int8s.c b/2.3-1/src/c/elementaryFunctions/int8/u16int8s.c index b59c6771..440b5d8a 100644 --- a/2.3-1/src/c/elementaryFunctions/int8/u16int8s.c +++ b/2.3-1/src/c/elementaryFunctions/int8/u16int8s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int8.h" diff --git a/2.3-1/src/c/elementaryFunctions/int8/u8int8a.c b/2.3-1/src/c/elementaryFunctions/int8/u8int8a.c index 2bee86ae..310aafd6 100644 --- a/2.3-1/src/c/elementaryFunctions/int8/u8int8a.c +++ b/2.3-1/src/c/elementaryFunctions/int8/u8int8a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int8.h" diff --git a/2.3-1/src/c/elementaryFunctions/int8/u8int8s.c b/2.3-1/src/c/elementaryFunctions/int8/u8int8s.c index 2c2fa07a..40b7e932 100644 --- a/2.3-1/src/c/elementaryFunctions/int8/u8int8s.c +++ b/2.3-1/src/c/elementaryFunctions/int8/u8int8s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "int8.h" diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitand.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitand.h index 26031ad3..8b208eaa 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitand.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitand.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_BITAND_H__ #define __INT_BITAND_H__ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitcmp.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitcmp.h index d72eb2e7..d49289f1 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitcmp.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitcmp.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_BITCMP_H__ #define __INT_BITCMP_H__ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitget.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitget.h index 7b6b8e9e..ea930ab1 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitget.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitget.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_BITGET_H__ #define __INT_BITGET_H__ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitor.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitor.h index 6a65c9f3..00edc483 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitor.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitor.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_BITOR_H__ #define __INT_BITOR_H__ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitset.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitset.h index e8643252..a37160be 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitset.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitset.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_BITSET_H__ #define __INT_BITSET_H__ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitxor.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitxor.h index 30aea6cf..1722c909 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_bitxor.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_bitxor.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_BITXOR_H__ #define __INT_BITXOR_H__ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_int16.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_int16.h index a5d66104..4f32fe9b 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_int16.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_int16.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ /* THIS IS AN AUTOMATICALLY GENERATED FILE : DO NOT EDIT BY HAND. */ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_int8.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_int8.h index 9a50e013..5628c5ac 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_int8.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_int8.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ /* THIS IS AN AUTOMATICALLY GENERATED FILE : DO NOT EDIT BY HAND. */ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_linspace.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_linspace.h index 4e60b15b..f8af947a 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_linspace.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_linspace.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_LINSPACE_H__ #define __INT_LINSPACE_H__ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_logspace.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_logspace.h index 34e325ac..2c244006 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_logspace.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_logspace.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IITB */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_LOGSPACE_H__ #define __INT_LOGSPACE_H__ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_uint16.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_uint16.h index 6d69caf3..12808776 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_uint16.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_uint16.h @@ -1,16 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ - -/* THIS IS AN AUTOMATICALLY GENERATED FILE : DO NOT EDIT BY HAND. */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_UINT16_H__ #define __INT_UINT16_H__ diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_uint8.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_uint8.h index b29d7bbf..ac0bc43e 100644 --- a/2.3-1/src/c/elementaryFunctions/interfaces/int_uint8.h +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_uint8.h @@ -1,16 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ - -/* THIS IS AN AUTOMATICALLY GENERATED FILE : DO NOT EDIT BY HAND. */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_UINT8_H__ #define __INT_UINT8_H__ diff --git a/2.3-1/src/c/elementaryFunctions/linspace/dlinspacea.c b/2.3-1/src/c/elementaryFunctions/linspace/dlinspacea.c index d2ca6987..cb60f9e7 100644 --- a/2.3-1/src/c/elementaryFunctions/linspace/dlinspacea.c +++ b/2.3-1/src/c/elementaryFunctions/linspace/dlinspacea.c @@ -1,6 +1,14 @@ -/* - Scilab2C FOSSEE IIT Bombay - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "linspace.h" void dlinspacea(double *low_limit,int _row,double *up_limit,double range_num,double *out) diff --git a/2.3-1/src/c/elementaryFunctions/linspace/dlinspaces.c b/2.3-1/src/c/elementaryFunctions/linspace/dlinspaces.c index daeb8257..9ac80271 100644 --- a/2.3-1/src/c/elementaryFunctions/linspace/dlinspaces.c +++ b/2.3-1/src/c/elementaryFunctions/linspace/dlinspaces.c @@ -1,6 +1,14 @@ -/* - Scilab2C FOSSEE IIT Bombay - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "linspace.h" void dlinspaces(double low_limit,double up_limit,double range_num,double *out) diff --git a/2.3-1/src/c/elementaryFunctions/logspace/dlogspacea.c b/2.3-1/src/c/elementaryFunctions/logspace/dlogspacea.c index 9ea551bd..3a9caf15 100644 --- a/2.3-1/src/c/elementaryFunctions/logspace/dlogspacea.c +++ b/2.3-1/src/c/elementaryFunctions/logspace/dlogspacea.c @@ -1,6 +1,14 @@ -/* - Scilab2C FOSSEE IIT Bombay - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "logspace.h" #include<math.h> diff --git a/2.3-1/src/c/elementaryFunctions/logspace/dlogspaces.c b/2.3-1/src/c/elementaryFunctions/logspace/dlogspaces.c index 851713b0..df9c94f0 100644 --- a/2.3-1/src/c/elementaryFunctions/logspace/dlogspaces.c +++ b/2.3-1/src/c/elementaryFunctions/logspace/dlogspaces.c @@ -1,6 +1,14 @@ -/* - Scilab2C FOSSEE IIT Bombay - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "logspace.h" #include<math.h> diff --git a/2.3-1/src/c/elementaryFunctions/pow/i16powa.c b/2.3-1/src/c/elementaryFunctions/pow/i16powa.c index e8e87fd3..eecce15f 100644 --- a/2.3-1/src/c/elementaryFunctions/pow/i16powa.c +++ b/2.3-1/src/c/elementaryFunctions/pow/i16powa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "pow.h" diff --git a/2.3-1/src/c/elementaryFunctions/pow/i16pows.c b/2.3-1/src/c/elementaryFunctions/pow/i16pows.c index c8068c75..63f92d92 100644 --- a/2.3-1/src/c/elementaryFunctions/pow/i16pows.c +++ b/2.3-1/src/c/elementaryFunctions/pow/i16pows.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "pow.h" diff --git a/2.3-1/src/c/elementaryFunctions/pow/i8powa.c b/2.3-1/src/c/elementaryFunctions/pow/i8powa.c index e17b666d..bf948223 100644 --- a/2.3-1/src/c/elementaryFunctions/pow/i8powa.c +++ b/2.3-1/src/c/elementaryFunctions/pow/i8powa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "pow.h" diff --git a/2.3-1/src/c/elementaryFunctions/pow/i8pows.c b/2.3-1/src/c/elementaryFunctions/pow/i8pows.c index 3566c417..125ef8c2 100644 --- a/2.3-1/src/c/elementaryFunctions/pow/i8pows.c +++ b/2.3-1/src/c/elementaryFunctions/pow/i8pows.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "pow.h" diff --git a/2.3-1/src/c/elementaryFunctions/pow/u16powa.c b/2.3-1/src/c/elementaryFunctions/pow/u16powa.c index 65ba77e7..df34972d 100644 --- a/2.3-1/src/c/elementaryFunctions/pow/u16powa.c +++ b/2.3-1/src/c/elementaryFunctions/pow/u16powa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "pow.h" diff --git a/2.3-1/src/c/elementaryFunctions/pow/u16pows.c b/2.3-1/src/c/elementaryFunctions/pow/u16pows.c index 34672b0f..49dd654c 100644 --- a/2.3-1/src/c/elementaryFunctions/pow/u16pows.c +++ b/2.3-1/src/c/elementaryFunctions/pow/u16pows.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "pow.h" diff --git a/2.3-1/src/c/elementaryFunctions/pow/u8powa.c b/2.3-1/src/c/elementaryFunctions/pow/u8powa.c index b69431c7..90bcc642 100644 --- a/2.3-1/src/c/elementaryFunctions/pow/u8powa.c +++ b/2.3-1/src/c/elementaryFunctions/pow/u8powa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "pow.h" diff --git a/2.3-1/src/c/elementaryFunctions/pow/u8pows.c b/2.3-1/src/c/elementaryFunctions/pow/u8pows.c index 786b9194..cfcd4c69 100644 --- a/2.3-1/src/c/elementaryFunctions/pow/u8pows.c +++ b/2.3-1/src/c/elementaryFunctions/pow/u8pows.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "pow.h" diff --git a/2.3-1/src/c/elementaryFunctions/round/i16rounda.c b/2.3-1/src/c/elementaryFunctions/round/i16rounda.c index 5cacafae..26ed262a 100644 --- a/2.3-1/src/c/elementaryFunctions/round/i16rounda.c +++ b/2.3-1/src/c/elementaryFunctions/round/i16rounda.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "round.h" diff --git a/2.3-1/src/c/elementaryFunctions/round/i16rounds.c b/2.3-1/src/c/elementaryFunctions/round/i16rounds.c index 95bd6098..68bd7a4c 100644 --- a/2.3-1/src/c/elementaryFunctions/round/i16rounds.c +++ b/2.3-1/src/c/elementaryFunctions/round/i16rounds.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "round.h" diff --git a/2.3-1/src/c/elementaryFunctions/round/i8rounda.c b/2.3-1/src/c/elementaryFunctions/round/i8rounda.c index c47be512..bb0b0c90 100644 --- a/2.3-1/src/c/elementaryFunctions/round/i8rounda.c +++ b/2.3-1/src/c/elementaryFunctions/round/i8rounda.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "round.h" diff --git a/2.3-1/src/c/elementaryFunctions/round/i8rounds.c b/2.3-1/src/c/elementaryFunctions/round/i8rounds.c index f37d53c6..bb737241 100644 --- a/2.3-1/src/c/elementaryFunctions/round/i8rounds.c +++ b/2.3-1/src/c/elementaryFunctions/round/i8rounds.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "round.h" diff --git a/2.3-1/src/c/elementaryFunctions/round/u16rounda.c b/2.3-1/src/c/elementaryFunctions/round/u16rounda.c index 38c4b282..1b0b1edc 100644 --- a/2.3-1/src/c/elementaryFunctions/round/u16rounda.c +++ b/2.3-1/src/c/elementaryFunctions/round/u16rounda.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "round.h" diff --git a/2.3-1/src/c/elementaryFunctions/round/u16rounds.c b/2.3-1/src/c/elementaryFunctions/round/u16rounds.c index babda6db..f8a4ad49 100644 --- a/2.3-1/src/c/elementaryFunctions/round/u16rounds.c +++ b/2.3-1/src/c/elementaryFunctions/round/u16rounds.c @@ -1,15 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ - +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "round.h" diff --git a/2.3-1/src/c/elementaryFunctions/round/u8rounda.c b/2.3-1/src/c/elementaryFunctions/round/u8rounda.c index e8f828dd..b58a6d20 100644 --- a/2.3-1/src/c/elementaryFunctions/round/u8rounda.c +++ b/2.3-1/src/c/elementaryFunctions/round/u8rounda.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "round.h" diff --git a/2.3-1/src/c/elementaryFunctions/round/u8rounds.c b/2.3-1/src/c/elementaryFunctions/round/u8rounds.c index 7e3da179..e27cc2ca 100644 --- a/2.3-1/src/c/elementaryFunctions/round/u8rounds.c +++ b/2.3-1/src/c/elementaryFunctions/round/u8rounds.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "round.h" diff --git a/2.3-1/src/c/elementaryFunctions/sin/i16sina.c b/2.3-1/src/c/elementaryFunctions/sin/i16sina.c index 0a00146a..4e9a3b06 100644 --- a/2.3-1/src/c/elementaryFunctions/sin/i16sina.c +++ b/2.3-1/src/c/elementaryFunctions/sin/i16sina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sin.h" diff --git a/2.3-1/src/c/elementaryFunctions/sin/i16sins.c b/2.3-1/src/c/elementaryFunctions/sin/i16sins.c index cbf69d65..3a8dc4da 100644 --- a/2.3-1/src/c/elementaryFunctions/sin/i16sins.c +++ b/2.3-1/src/c/elementaryFunctions/sin/i16sins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "sin.h" diff --git a/2.3-1/src/c/elementaryFunctions/sin/i8sina.c b/2.3-1/src/c/elementaryFunctions/sin/i8sina.c index f811501c..2457388f 100644 --- a/2.3-1/src/c/elementaryFunctions/sin/i8sina.c +++ b/2.3-1/src/c/elementaryFunctions/sin/i8sina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sin.h" diff --git a/2.3-1/src/c/elementaryFunctions/sin/i8sins.c b/2.3-1/src/c/elementaryFunctions/sin/i8sins.c index ab522ef0..4e6deabd 100644 --- a/2.3-1/src/c/elementaryFunctions/sin/i8sins.c +++ b/2.3-1/src/c/elementaryFunctions/sin/i8sins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "sin.h" diff --git a/2.3-1/src/c/elementaryFunctions/sin/u16sina.c b/2.3-1/src/c/elementaryFunctions/sin/u16sina.c index fa4645f8..03054c20 100644 --- a/2.3-1/src/c/elementaryFunctions/sin/u16sina.c +++ b/2.3-1/src/c/elementaryFunctions/sin/u16sina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sin.h" diff --git a/2.3-1/src/c/elementaryFunctions/sin/u16sins.c b/2.3-1/src/c/elementaryFunctions/sin/u16sins.c index dfa215dd..9610248d 100644 --- a/2.3-1/src/c/elementaryFunctions/sin/u16sins.c +++ b/2.3-1/src/c/elementaryFunctions/sin/u16sins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "sin.h" diff --git a/2.3-1/src/c/elementaryFunctions/sin/u8sina.c b/2.3-1/src/c/elementaryFunctions/sin/u8sina.c index 2bfe866e..271d6451 100644 --- a/2.3-1/src/c/elementaryFunctions/sin/u8sina.c +++ b/2.3-1/src/c/elementaryFunctions/sin/u8sina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sin.h" diff --git a/2.3-1/src/c/elementaryFunctions/sin/u8sins.c b/2.3-1/src/c/elementaryFunctions/sin/u8sins.c index b1d31790..50e8bfe9 100644 --- a/2.3-1/src/c/elementaryFunctions/sin/u8sins.c +++ b/2.3-1/src/c/elementaryFunctions/sin/u8sins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "sin.h" diff --git a/2.3-1/src/c/elementaryFunctions/sinh/i16sinha.c b/2.3-1/src/c/elementaryFunctions/sinh/i16sinha.c index 107d999a..71ad70b2 100644 --- a/2.3-1/src/c/elementaryFunctions/sinh/i16sinha.c +++ b/2.3-1/src/c/elementaryFunctions/sinh/i16sinha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sinh.h" diff --git a/2.3-1/src/c/elementaryFunctions/sinh/i16sinhs.c b/2.3-1/src/c/elementaryFunctions/sinh/i16sinhs.c index ade1d6fb..a13cf378 100644 --- a/2.3-1/src/c/elementaryFunctions/sinh/i16sinhs.c +++ b/2.3-1/src/c/elementaryFunctions/sinh/i16sinhs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "sinh.h" diff --git a/2.3-1/src/c/elementaryFunctions/sinh/i8sinha.c b/2.3-1/src/c/elementaryFunctions/sinh/i8sinha.c index e5fe6e40..50025748 100644 --- a/2.3-1/src/c/elementaryFunctions/sinh/i8sinha.c +++ b/2.3-1/src/c/elementaryFunctions/sinh/i8sinha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sinh.h" diff --git a/2.3-1/src/c/elementaryFunctions/sinh/i8sinhs.c b/2.3-1/src/c/elementaryFunctions/sinh/i8sinhs.c index 69bf5baa..8c34bf40 100644 --- a/2.3-1/src/c/elementaryFunctions/sinh/i8sinhs.c +++ b/2.3-1/src/c/elementaryFunctions/sinh/i8sinhs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "sinh.h" diff --git a/2.3-1/src/c/elementaryFunctions/sinh/u16sinha.c b/2.3-1/src/c/elementaryFunctions/sinh/u16sinha.c index 56eb1f84..279ed488 100644 --- a/2.3-1/src/c/elementaryFunctions/sinh/u16sinha.c +++ b/2.3-1/src/c/elementaryFunctions/sinh/u16sinha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sinh.h" diff --git a/2.3-1/src/c/elementaryFunctions/sinh/u16sinhs.c b/2.3-1/src/c/elementaryFunctions/sinh/u16sinhs.c index e9daf00c..ca28d463 100644 --- a/2.3-1/src/c/elementaryFunctions/sinh/u16sinhs.c +++ b/2.3-1/src/c/elementaryFunctions/sinh/u16sinhs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "sinh.h" diff --git a/2.3-1/src/c/elementaryFunctions/sinh/u8sinha.c b/2.3-1/src/c/elementaryFunctions/sinh/u8sinha.c index b1e2dfea..66a51e81 100644 --- a/2.3-1/src/c/elementaryFunctions/sinh/u8sinha.c +++ b/2.3-1/src/c/elementaryFunctions/sinh/u8sinha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sinh.h" diff --git a/2.3-1/src/c/elementaryFunctions/sinh/u8sinhs.c b/2.3-1/src/c/elementaryFunctions/sinh/u8sinhs.c index 126f01ca..3b2f8e6d 100644 --- a/2.3-1/src/c/elementaryFunctions/sinh/u8sinhs.c +++ b/2.3-1/src/c/elementaryFunctions/sinh/u8sinhs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "sinh.h" diff --git a/2.3-1/src/c/elementaryFunctions/tan/i16tana.c b/2.3-1/src/c/elementaryFunctions/tan/i16tana.c index cf1ed946..cbbe237b 100644 --- a/2.3-1/src/c/elementaryFunctions/tan/i16tana.c +++ b/2.3-1/src/c/elementaryFunctions/tan/i16tana.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "tan.h" diff --git a/2.3-1/src/c/elementaryFunctions/tan/i16tans.c b/2.3-1/src/c/elementaryFunctions/tan/i16tans.c index 61c25d76..b7cc7bb7 100644 --- a/2.3-1/src/c/elementaryFunctions/tan/i16tans.c +++ b/2.3-1/src/c/elementaryFunctions/tan/i16tans.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "tan.h" diff --git a/2.3-1/src/c/elementaryFunctions/tan/i8tana.c b/2.3-1/src/c/elementaryFunctions/tan/i8tana.c index 3312a272..4daeb471 100644 --- a/2.3-1/src/c/elementaryFunctions/tan/i8tana.c +++ b/2.3-1/src/c/elementaryFunctions/tan/i8tana.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "tan.h" diff --git a/2.3-1/src/c/elementaryFunctions/tan/i8tans.c b/2.3-1/src/c/elementaryFunctions/tan/i8tans.c index a7247a68..0dc9f9a5 100644 --- a/2.3-1/src/c/elementaryFunctions/tan/i8tans.c +++ b/2.3-1/src/c/elementaryFunctions/tan/i8tans.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "tan.h" diff --git a/2.3-1/src/c/elementaryFunctions/tan/u16tana.c b/2.3-1/src/c/elementaryFunctions/tan/u16tana.c index 44e70256..12df0ee9 100644 --- a/2.3-1/src/c/elementaryFunctions/tan/u16tana.c +++ b/2.3-1/src/c/elementaryFunctions/tan/u16tana.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "tan.h" diff --git a/2.3-1/src/c/elementaryFunctions/tan/u16tans.c b/2.3-1/src/c/elementaryFunctions/tan/u16tans.c index 22f68711..f184a674 100644 --- a/2.3-1/src/c/elementaryFunctions/tan/u16tans.c +++ b/2.3-1/src/c/elementaryFunctions/tan/u16tans.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "tan.h" diff --git a/2.3-1/src/c/elementaryFunctions/tan/u8tana.c b/2.3-1/src/c/elementaryFunctions/tan/u8tana.c index 725dfb3c..d541b20f 100644 --- a/2.3-1/src/c/elementaryFunctions/tan/u8tana.c +++ b/2.3-1/src/c/elementaryFunctions/tan/u8tana.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "tan.h" diff --git a/2.3-1/src/c/elementaryFunctions/tan/u8tans.c b/2.3-1/src/c/elementaryFunctions/tan/u8tans.c index 7af4ba24..74b5fb9d 100644 --- a/2.3-1/src/c/elementaryFunctions/tan/u8tans.c +++ b/2.3-1/src/c/elementaryFunctions/tan/u8tans.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "tan.h" diff --git a/2.3-1/src/c/elementaryFunctions/tanh/i16tanha.c b/2.3-1/src/c/elementaryFunctions/tanh/i16tanha.c index 5c564d9b..3a4e37cd 100644 --- a/2.3-1/src/c/elementaryFunctions/tanh/i16tanha.c +++ b/2.3-1/src/c/elementaryFunctions/tanh/i16tanha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "tanh.h" diff --git a/2.3-1/src/c/elementaryFunctions/tanh/i16tanhs.c b/2.3-1/src/c/elementaryFunctions/tanh/i16tanhs.c index d42b2678..7d8b1843 100644 --- a/2.3-1/src/c/elementaryFunctions/tanh/i16tanhs.c +++ b/2.3-1/src/c/elementaryFunctions/tanh/i16tanhs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "tanh.h" diff --git a/2.3-1/src/c/elementaryFunctions/tanh/i8tanha.c b/2.3-1/src/c/elementaryFunctions/tanh/i8tanha.c index cbcc6511..dca31761 100644 --- a/2.3-1/src/c/elementaryFunctions/tanh/i8tanha.c +++ b/2.3-1/src/c/elementaryFunctions/tanh/i8tanha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "tanh.h" diff --git a/2.3-1/src/c/elementaryFunctions/tanh/i8tanhs.c b/2.3-1/src/c/elementaryFunctions/tanh/i8tanhs.c index 569eeaa5..6351e5c8 100644 --- a/2.3-1/src/c/elementaryFunctions/tanh/i8tanhs.c +++ b/2.3-1/src/c/elementaryFunctions/tanh/i8tanhs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "tanh.h" diff --git a/2.3-1/src/c/elementaryFunctions/tanh/u16tanha.c b/2.3-1/src/c/elementaryFunctions/tanh/u16tanha.c index c7aaca49..61db747b 100644 --- a/2.3-1/src/c/elementaryFunctions/tanh/u16tanha.c +++ b/2.3-1/src/c/elementaryFunctions/tanh/u16tanha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "tanh.h" diff --git a/2.3-1/src/c/elementaryFunctions/tanh/u16tanhs.c b/2.3-1/src/c/elementaryFunctions/tanh/u16tanhs.c index 6ce5efcf..17909e7c 100644 --- a/2.3-1/src/c/elementaryFunctions/tanh/u16tanhs.c +++ b/2.3-1/src/c/elementaryFunctions/tanh/u16tanhs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "tanh.h" diff --git a/2.3-1/src/c/elementaryFunctions/tanh/u8tanha.c b/2.3-1/src/c/elementaryFunctions/tanh/u8tanha.c index 92f19a63..9ca20eeb 100644 --- a/2.3-1/src/c/elementaryFunctions/tanh/u8tanha.c +++ b/2.3-1/src/c/elementaryFunctions/tanh/u8tanha.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "tanh.h" diff --git a/2.3-1/src/c/elementaryFunctions/tanh/u8tanhs.c b/2.3-1/src/c/elementaryFunctions/tanh/u8tanhs.c index cac46c7a..c6179f9d 100644 --- a/2.3-1/src/c/elementaryFunctions/tanh/u8tanhs.c +++ b/2.3-1/src/c/elementaryFunctions/tanh/u8tanhs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <math.h> #include "tanh.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint16/duint16a.c b/2.3-1/src/c/elementaryFunctions/uint16/duint16a.c index c94cd187..af9e2f57 100644 --- a/2.3-1/src/c/elementaryFunctions/uint16/duint16a.c +++ b/2.3-1/src/c/elementaryFunctions/uint16/duint16a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint16.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint16/duint16s.c b/2.3-1/src/c/elementaryFunctions/uint16/duint16s.c index 4c4918f4..79bd75a3 100644 --- a/2.3-1/src/c/elementaryFunctions/uint16/duint16s.c +++ b/2.3-1/src/c/elementaryFunctions/uint16/duint16s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint16.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint16/i16uint16a.c b/2.3-1/src/c/elementaryFunctions/uint16/i16uint16a.c index aea580c1..64a598d2 100644 --- a/2.3-1/src/c/elementaryFunctions/uint16/i16uint16a.c +++ b/2.3-1/src/c/elementaryFunctions/uint16/i16uint16a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint16.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint16/i16uint16s.c b/2.3-1/src/c/elementaryFunctions/uint16/i16uint16s.c index 03de75e3..01d46ac1 100644 --- a/2.3-1/src/c/elementaryFunctions/uint16/i16uint16s.c +++ b/2.3-1/src/c/elementaryFunctions/uint16/i16uint16s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint16.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint16/i8uint16a.c b/2.3-1/src/c/elementaryFunctions/uint16/i8uint16a.c index 05dc2134..3cab61fa 100644 --- a/2.3-1/src/c/elementaryFunctions/uint16/i8uint16a.c +++ b/2.3-1/src/c/elementaryFunctions/uint16/i8uint16a.c @@ -1,15 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint16.h" void i8uint16a(int8* x, int size, uint16* out) { diff --git a/2.3-1/src/c/elementaryFunctions/uint16/i8uint16s.c b/2.3-1/src/c/elementaryFunctions/uint16/i8uint16s.c index a8088412..5527838e 100644 --- a/2.3-1/src/c/elementaryFunctions/uint16/i8uint16s.c +++ b/2.3-1/src/c/elementaryFunctions/uint16/i8uint16s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint16.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint16/suint16a.c b/2.3-1/src/c/elementaryFunctions/uint16/suint16a.c index 4bc3768e..e048922f 100644 --- a/2.3-1/src/c/elementaryFunctions/uint16/suint16a.c +++ b/2.3-1/src/c/elementaryFunctions/uint16/suint16a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint16.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint16/suint16s.c b/2.3-1/src/c/elementaryFunctions/uint16/suint16s.c index 708237b1..8d277d19 100644 --- a/2.3-1/src/c/elementaryFunctions/uint16/suint16s.c +++ b/2.3-1/src/c/elementaryFunctions/uint16/suint16s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint16.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint16/u8uint16a.c b/2.3-1/src/c/elementaryFunctions/uint16/u8uint16a.c index 0925c41d..b5ca533f 100644 --- a/2.3-1/src/c/elementaryFunctions/uint16/u8uint16a.c +++ b/2.3-1/src/c/elementaryFunctions/uint16/u8uint16a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint16.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint16/u8uint16s.c b/2.3-1/src/c/elementaryFunctions/uint16/u8uint16s.c index 9a4df173..9da480f8 100644 --- a/2.3-1/src/c/elementaryFunctions/uint16/u8uint16s.c +++ b/2.3-1/src/c/elementaryFunctions/uint16/u8uint16s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint16.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint8/duint8a.c b/2.3-1/src/c/elementaryFunctions/uint8/duint8a.c index 0a3f2d25..02d63058 100644 --- a/2.3-1/src/c/elementaryFunctions/uint8/duint8a.c +++ b/2.3-1/src/c/elementaryFunctions/uint8/duint8a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint8.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint8/duint8s.c b/2.3-1/src/c/elementaryFunctions/uint8/duint8s.c index b797934b..d7a7524f 100644 --- a/2.3-1/src/c/elementaryFunctions/uint8/duint8s.c +++ b/2.3-1/src/c/elementaryFunctions/uint8/duint8s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint8.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint8/i16uint8a.c b/2.3-1/src/c/elementaryFunctions/uint8/i16uint8a.c index 9cfdcf80..49e31d12 100644 --- a/2.3-1/src/c/elementaryFunctions/uint8/i16uint8a.c +++ b/2.3-1/src/c/elementaryFunctions/uint8/i16uint8a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint8.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint8/i16uint8s.c b/2.3-1/src/c/elementaryFunctions/uint8/i16uint8s.c index 9b84d700..695d7882 100644 --- a/2.3-1/src/c/elementaryFunctions/uint8/i16uint8s.c +++ b/2.3-1/src/c/elementaryFunctions/uint8/i16uint8s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint8.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint8/i8uint8a.c b/2.3-1/src/c/elementaryFunctions/uint8/i8uint8a.c index 34c65d19..89574e83 100644 --- a/2.3-1/src/c/elementaryFunctions/uint8/i8uint8a.c +++ b/2.3-1/src/c/elementaryFunctions/uint8/i8uint8a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint8.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint8/i8uint8s.c b/2.3-1/src/c/elementaryFunctions/uint8/i8uint8s.c index 0f57a50e..4c83c4e4 100644 --- a/2.3-1/src/c/elementaryFunctions/uint8/i8uint8s.c +++ b/2.3-1/src/c/elementaryFunctions/uint8/i8uint8s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint8.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint8/suint8a.c b/2.3-1/src/c/elementaryFunctions/uint8/suint8a.c index cf64dd42..2e1a5ac8 100644 --- a/2.3-1/src/c/elementaryFunctions/uint8/suint8a.c +++ b/2.3-1/src/c/elementaryFunctions/uint8/suint8a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint8.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint8/suint8s.c b/2.3-1/src/c/elementaryFunctions/uint8/suint8s.c index e95e9642..ce38c1d0 100644 --- a/2.3-1/src/c/elementaryFunctions/uint8/suint8s.c +++ b/2.3-1/src/c/elementaryFunctions/uint8/suint8s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint8.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint8/u16uint8a.c b/2.3-1/src/c/elementaryFunctions/uint8/u16uint8a.c index bfb24996..0c4246ec 100644 --- a/2.3-1/src/c/elementaryFunctions/uint8/u16uint8a.c +++ b/2.3-1/src/c/elementaryFunctions/uint8/u16uint8a.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint8.h" diff --git a/2.3-1/src/c/elementaryFunctions/uint8/u16uint8s.c b/2.3-1/src/c/elementaryFunctions/uint8/u16uint8s.c index be883eb0..32d5b718 100644 --- a/2.3-1/src/c/elementaryFunctions/uint8/u16uint8s.c +++ b/2.3-1/src/c/elementaryFunctions/uint8/u16uint8s.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud Torset - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "uint8.h" diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libbcm2835.a b/2.3-1/src/c/hardware/rasberrypi/libraries/libbcm2835.a Binary files differdeleted file mode 100644 index bab5afcf..00000000 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libbcm2835.a +++ /dev/null diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libpng.a.bkup b/2.3-1/src/c/hardware/rasberrypi/libraries/libpng.a.bkup Binary files differdeleted file mode 100644 index ae370765..00000000 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libpng.a.bkup +++ /dev/null diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_haartraining_engine.a b/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_haartraining_engine.a Binary files differdeleted file mode 100644 index 3a20f71a..00000000 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_haartraining_engine.a +++ /dev/null diff --git a/2.3-1/src/c/matrixOperations/cat/i16cata.c b/2.3-1/src/c/matrixOperations/cat/i16cata.c index 9acd10ec..d7187b4a 100644 --- a/2.3-1/src/c/matrixOperations/cat/i16cata.c +++ b/2.3-1/src/c/matrixOperations/cat/i16cata.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IIT BOMBAY*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cat.h" /* From scilab help cat then the concatenation is done according to the rows A1 = [1 2 3;4 5 6]; diff --git a/2.3-1/src/c/matrixOperations/cat/i16cats.c b/2.3-1/src/c/matrixOperations/cat/i16cats.c index 8d8af28f..11b24ac6 100644 --- a/2.3-1/src/c/matrixOperations/cat/i16cats.c +++ b/2.3-1/src/c/matrixOperations/cat/i16cats.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IIT BOMBAY*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cat.h" void i16rowcats(int16 in1,int16 in2,int16 *out) diff --git a/2.3-1/src/c/matrixOperations/cat/i8cata.c b/2.3-1/src/c/matrixOperations/cat/i8cata.c index a2caad95..47fbfa40 100644 --- a/2.3-1/src/c/matrixOperations/cat/i8cata.c +++ b/2.3-1/src/c/matrixOperations/cat/i8cata.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IIT BOMBAY*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cat.h" /* From scilab help cat then the concatenation is done according to the rows A1 = [1 2 3;4 5 6]; diff --git a/2.3-1/src/c/matrixOperations/cat/i8cats.c b/2.3-1/src/c/matrixOperations/cat/i8cats.c index 575f8a8f..51dadd16 100644 --- a/2.3-1/src/c/matrixOperations/cat/i8cats.c +++ b/2.3-1/src/c/matrixOperations/cat/i8cats.c @@ -1,4 +1,14 @@ -/* Scilab 2C FOSSEE IIT BOMBAY */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cat.h" void i8rowcats(int8 in1,int8 in2,int8 *out) diff --git a/2.3-1/src/c/matrixOperations/cat/u16cata.c b/2.3-1/src/c/matrixOperations/cat/u16cata.c index 2b756e59..8c33acb9 100644 --- a/2.3-1/src/c/matrixOperations/cat/u16cata.c +++ b/2.3-1/src/c/matrixOperations/cat/u16cata.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IIT BOMBAY*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cat.h" /* From scilab help cat then the concatenation is done according to the rows A1 = [1 2 3;4 5 6]; diff --git a/2.3-1/src/c/matrixOperations/cat/u16cats.c b/2.3-1/src/c/matrixOperations/cat/u16cats.c index e4170490..942ed769 100644 --- a/2.3-1/src/c/matrixOperations/cat/u16cats.c +++ b/2.3-1/src/c/matrixOperations/cat/u16cats.c @@ -1,4 +1,15 @@ -/* Scilab2C FOSSEE IIT BOMBAY*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "cat.h" void u16rowcats(uint16 in1,uint16 in2,uint16 *out) diff --git a/2.3-1/src/c/matrixOperations/cat/u8cata.c b/2.3-1/src/c/matrixOperations/cat/u8cata.c index 29163238..ab15f42f 100644 --- a/2.3-1/src/c/matrixOperations/cat/u8cata.c +++ b/2.3-1/src/c/matrixOperations/cat/u8cata.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IIT BOMBAY*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cat.h" /* From scilab help cat then the concatenation is done according to the rows A1 = [1 2 3;4 5 6]; diff --git a/2.3-1/src/c/matrixOperations/cat/u8cats.c b/2.3-1/src/c/matrixOperations/cat/u8cats.c index 249a6b8c..92341f3b 100644 --- a/2.3-1/src/c/matrixOperations/cat/u8cats.c +++ b/2.3-1/src/c/matrixOperations/cat/u8cats.c @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IIT BOMBAY*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cat.h" void u8rowcats(uint8 in1,uint8 in2,uint8 *out) diff --git a/2.3-1/src/c/matrixOperations/determ/i16determa.c b/2.3-1/src/c/matrixOperations/determ/i16determa.c index a1184553..97ec948b 100644 --- a/2.3-1/src/c/matrixOperations/determ/i16determa.c +++ b/2.3-1/src/c/matrixOperations/determ/i16determa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #ifndef WITHOUT_LAPACK diff --git a/2.3-1/src/c/matrixOperations/determ/i8determa.c b/2.3-1/src/c/matrixOperations/determ/i8determa.c index 9693fe67..cf436a00 100644 --- a/2.3-1/src/c/matrixOperations/determ/i8determa.c +++ b/2.3-1/src/c/matrixOperations/determ/i8determa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #ifndef WITHOUT_LAPACK diff --git a/2.3-1/src/c/matrixOperations/determ/u16determa.c b/2.3-1/src/c/matrixOperations/determ/u16determa.c index 480d1ed3..5e859d44 100644 --- a/2.3-1/src/c/matrixOperations/determ/u16determa.c +++ b/2.3-1/src/c/matrixOperations/determ/u16determa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #ifndef WITHOUT_LAPACK diff --git a/2.3-1/src/c/matrixOperations/determ/u8determa.c b/2.3-1/src/c/matrixOperations/determ/u8determa.c index 3fb18d54..f226af20 100644 --- a/2.3-1/src/c/matrixOperations/determ/u8determa.c +++ b/2.3-1/src/c/matrixOperations/determ/u8determa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #ifndef WITHOUT_LAPACK diff --git a/2.3-1/src/c/matrixOperations/diag/ddiaga.c b/2.3-1/src/c/matrixOperations/diag/ddiaga.c index 20f2039e..983e8ff9 100644 --- a/2.3-1/src/c/matrixOperations/diag/ddiaga.c +++ b/2.3-1/src/c/matrixOperations/diag/ddiaga.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" diff --git a/2.3-1/src/c/matrixOperations/diag/ddiagexa.c b/2.3-1/src/c/matrixOperations/diag/ddiagexa.c index 191c1311..0e6c314c 100644 --- a/2.3-1/src/c/matrixOperations/diag/ddiagexa.c +++ b/2.3-1/src/c/matrixOperations/diag/ddiagexa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" void ddiagexa(double *in, int _row,int _column,int extract_post,double *out) diff --git a/2.3-1/src/c/matrixOperations/diag/ddiagexs.c b/2.3-1/src/c/matrixOperations/diag/ddiagexs.c index fb007b52..4e9ca5e4 100644 --- a/2.3-1/src/c/matrixOperations/diag/ddiagexs.c +++ b/2.3-1/src/c/matrixOperations/diag/ddiagexs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" double ddiagexs(double *in, int _row,int _column,int extract_post) diff --git a/2.3-1/src/c/matrixOperations/diag/ddiagina.c b/2.3-1/src/c/matrixOperations/diag/ddiagina.c index de192110..243aba10 100644 --- a/2.3-1/src/c/matrixOperations/diag/ddiagina.c +++ b/2.3-1/src/c/matrixOperations/diag/ddiagina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" diff --git a/2.3-1/src/c/matrixOperations/diag/ddiagins.c b/2.3-1/src/c/matrixOperations/diag/ddiagins.c index d1fc527a..09cc921e 100644 --- a/2.3-1/src/c/matrixOperations/diag/ddiagins.c +++ b/2.3-1/src/c/matrixOperations/diag/ddiagins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" void ddiagins(double *in, int size,double *out) diff --git a/2.3-1/src/c/matrixOperations/diag/ddiags.c b/2.3-1/src/c/matrixOperations/diag/ddiags.c index b43e5d63..bab21867 100644 --- a/2.3-1/src/c/matrixOperations/diag/ddiags.c +++ b/2.3-1/src/c/matrixOperations/diag/ddiags.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" double ddiags(double in) diff --git a/2.3-1/src/c/matrixOperations/diag/i16diaga.c b/2.3-1/src/c/matrixOperations/diag/i16diaga.c index b65822b6..6078ada7 100644 --- a/2.3-1/src/c/matrixOperations/diag/i16diaga.c +++ b/2.3-1/src/c/matrixOperations/diag/i16diaga.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" diff --git a/2.3-1/src/c/matrixOperations/diag/i16diagexa.c b/2.3-1/src/c/matrixOperations/diag/i16diagexa.c index 7e85c916..b51e0ae1 100644 --- a/2.3-1/src/c/matrixOperations/diag/i16diagexa.c +++ b/2.3-1/src/c/matrixOperations/diag/i16diagexa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" void i16diagexa(int16 *in, int _row,int _column,int extract_post,int16 *out) diff --git a/2.3-1/src/c/matrixOperations/diag/i16diagexs.c b/2.3-1/src/c/matrixOperations/diag/i16diagexs.c index 87536ce1..1071c504 100644 --- a/2.3-1/src/c/matrixOperations/diag/i16diagexs.c +++ b/2.3-1/src/c/matrixOperations/diag/i16diagexs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" int16 i16diagexs(int16 *in, int _row,int _column,int extract_post) diff --git a/2.3-1/src/c/matrixOperations/diag/i16diagina.c b/2.3-1/src/c/matrixOperations/diag/i16diagina.c index 8a86c237..a785003e 100644 --- a/2.3-1/src/c/matrixOperations/diag/i16diagina.c +++ b/2.3-1/src/c/matrixOperations/diag/i16diagina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" diff --git a/2.3-1/src/c/matrixOperations/diag/i16diagins.c b/2.3-1/src/c/matrixOperations/diag/i16diagins.c index f0d46eb9..f7f8612d 100644 --- a/2.3-1/src/c/matrixOperations/diag/i16diagins.c +++ b/2.3-1/src/c/matrixOperations/diag/i16diagins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" void i16diagins(int16 *in, int size,int16 *out) diff --git a/2.3-1/src/c/matrixOperations/diag/i16diags.c b/2.3-1/src/c/matrixOperations/diag/i16diags.c index b08657f5..d6d89f5b 100644 --- a/2.3-1/src/c/matrixOperations/diag/i16diags.c +++ b/2.3-1/src/c/matrixOperations/diag/i16diags.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" int16 i16diags(int16 in) diff --git a/2.3-1/src/c/matrixOperations/diag/i8diaga.c b/2.3-1/src/c/matrixOperations/diag/i8diaga.c index 50ba76e5..d4322278 100644 --- a/2.3-1/src/c/matrixOperations/diag/i8diaga.c +++ b/2.3-1/src/c/matrixOperations/diag/i8diaga.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" diff --git a/2.3-1/src/c/matrixOperations/diag/i8diagexa.c b/2.3-1/src/c/matrixOperations/diag/i8diagexa.c index 56fab854..8d5513b6 100644 --- a/2.3-1/src/c/matrixOperations/diag/i8diagexa.c +++ b/2.3-1/src/c/matrixOperations/diag/i8diagexa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" void i8diagexa(int8 *in, int _row,int _column,int extract_post,int8 *out) diff --git a/2.3-1/src/c/matrixOperations/diag/i8diagexs.c b/2.3-1/src/c/matrixOperations/diag/i8diagexs.c index 6aa76049..5d936618 100644 --- a/2.3-1/src/c/matrixOperations/diag/i8diagexs.c +++ b/2.3-1/src/c/matrixOperations/diag/i8diagexs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" int8 i8diagexs(int8 *in, int _row,int _column,int extract_post) diff --git a/2.3-1/src/c/matrixOperations/diag/i8diagina.c b/2.3-1/src/c/matrixOperations/diag/i8diagina.c index eb005bf0..b1bd1bac 100644 --- a/2.3-1/src/c/matrixOperations/diag/i8diagina.c +++ b/2.3-1/src/c/matrixOperations/diag/i8diagina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" diff --git a/2.3-1/src/c/matrixOperations/diag/i8diagins.c b/2.3-1/src/c/matrixOperations/diag/i8diagins.c index adb7eb96..dc6df972 100644 --- a/2.3-1/src/c/matrixOperations/diag/i8diagins.c +++ b/2.3-1/src/c/matrixOperations/diag/i8diagins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" void i8diagins(int8 *in, int size,int8 *out) diff --git a/2.3-1/src/c/matrixOperations/diag/i8diags.c b/2.3-1/src/c/matrixOperations/diag/i8diags.c index d4e44894..55eea1b1 100644 --- a/2.3-1/src/c/matrixOperations/diag/i8diags.c +++ b/2.3-1/src/c/matrixOperations/diag/i8diags.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" int8 i8diags(int8 in) diff --git a/2.3-1/src/c/matrixOperations/diag/u16diaga.c b/2.3-1/src/c/matrixOperations/diag/u16diaga.c index 18ff1bf9..ee27e53c 100644 --- a/2.3-1/src/c/matrixOperations/diag/u16diaga.c +++ b/2.3-1/src/c/matrixOperations/diag/u16diaga.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" diff --git a/2.3-1/src/c/matrixOperations/diag/u16diagexa.c b/2.3-1/src/c/matrixOperations/diag/u16diagexa.c index da2088c5..ac996b7b 100644 --- a/2.3-1/src/c/matrixOperations/diag/u16diagexa.c +++ b/2.3-1/src/c/matrixOperations/diag/u16diagexa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + rganization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" void u16diagexa(uint16 *in, int _row,int _column,int extract_post,uint16 *out) diff --git a/2.3-1/src/c/matrixOperations/diag/u16diagexs.c b/2.3-1/src/c/matrixOperations/diag/u16diagexs.c index c32849e6..dd04c5d2 100644 --- a/2.3-1/src/c/matrixOperations/diag/u16diagexs.c +++ b/2.3-1/src/c/matrixOperations/diag/u16diagexs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" uint16 u16diagexs(uint16 *in, int _row,int _column,int extract_post) diff --git a/2.3-1/src/c/matrixOperations/diag/u16diagina.c b/2.3-1/src/c/matrixOperations/diag/u16diagina.c index 02b52ece..97f5139c 100644 --- a/2.3-1/src/c/matrixOperations/diag/u16diagina.c +++ b/2.3-1/src/c/matrixOperations/diag/u16diagina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" diff --git a/2.3-1/src/c/matrixOperations/diag/u16diagins.c b/2.3-1/src/c/matrixOperations/diag/u16diagins.c index 84cfcb29..65590bd1 100644 --- a/2.3-1/src/c/matrixOperations/diag/u16diagins.c +++ b/2.3-1/src/c/matrixOperations/diag/u16diagins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" void u16diagins(uint16 *in, int size,uint16 *out) diff --git a/2.3-1/src/c/matrixOperations/diag/u16diags.c b/2.3-1/src/c/matrixOperations/diag/u16diags.c index 0f463b09..1e9b4519 100644 --- a/2.3-1/src/c/matrixOperations/diag/u16diags.c +++ b/2.3-1/src/c/matrixOperations/diag/u16diags.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" uint16 u16diags(uint16 in) diff --git a/2.3-1/src/c/matrixOperations/diag/u8diaga.c b/2.3-1/src/c/matrixOperations/diag/u8diaga.c index 079e4823..e6641aff 100644 --- a/2.3-1/src/c/matrixOperations/diag/u8diaga.c +++ b/2.3-1/src/c/matrixOperations/diag/u8diaga.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" diff --git a/2.3-1/src/c/matrixOperations/diag/u8diagexa.c b/2.3-1/src/c/matrixOperations/diag/u8diagexa.c index 258e10b0..17b873b2 100644 --- a/2.3-1/src/c/matrixOperations/diag/u8diagexa.c +++ b/2.3-1/src/c/matrixOperations/diag/u8diagexa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" void u8diagexa(uint8 *in, int _row,int _column,int extract_post,uint8 *out) diff --git a/2.3-1/src/c/matrixOperations/diag/u8diagexs.c b/2.3-1/src/c/matrixOperations/diag/u8diagexs.c index fbb2ef3f..fb800fda 100644 --- a/2.3-1/src/c/matrixOperations/diag/u8diagexs.c +++ b/2.3-1/src/c/matrixOperations/diag/u8diagexs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" uint8 u8diagexs(uint8 *in, int _row,int _column,int extract_post) diff --git a/2.3-1/src/c/matrixOperations/diag/u8diagina.c b/2.3-1/src/c/matrixOperations/diag/u8diagina.c index c9bf12ed..178d0f65 100644 --- a/2.3-1/src/c/matrixOperations/diag/u8diagina.c +++ b/2.3-1/src/c/matrixOperations/diag/u8diagina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" diff --git a/2.3-1/src/c/matrixOperations/diag/u8diagins.c b/2.3-1/src/c/matrixOperations/diag/u8diagins.c index f2765952..787cd644 100644 --- a/2.3-1/src/c/matrixOperations/diag/u8diagins.c +++ b/2.3-1/src/c/matrixOperations/diag/u8diagins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" void u8diagins(uint8 *in, int size,uint8 *out) diff --git a/2.3-1/src/c/matrixOperations/diag/u8diags.c b/2.3-1/src/c/matrixOperations/diag/u8diags.c index 97d2e515..d3d2e468 100644 --- a/2.3-1/src/c/matrixOperations/diag/u8diags.c +++ b/2.3-1/src/c/matrixOperations/diag/u8diags.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "diag.h" uint8 u8diags(uint8 in) diff --git a/2.3-1/src/c/matrixOperations/division/i16ldivma.c b/2.3-1/src/c/matrixOperations/division/i16ldivma.c index e5a134d0..decb8f39 100644 --- a/2.3-1/src/c/matrixOperations/division/i16ldivma.c +++ b/2.3-1/src/c/matrixOperations/division/i16ldivma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #include <string.h> diff --git a/2.3-1/src/c/matrixOperations/division/i16rdivma.c b/2.3-1/src/c/matrixOperations/division/i16rdivma.c index 21f6cc94..7cdebe55 100644 --- a/2.3-1/src/c/matrixOperations/division/i16rdivma.c +++ b/2.3-1/src/c/matrixOperations/division/i16rdivma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #include <string.h> #include "matrixDivision.h" diff --git a/2.3-1/src/c/matrixOperations/division/i16rdivv.c b/2.3-1/src/c/matrixOperations/division/i16rdivv.c index 72d3bd60..ebbdf580 100644 --- a/2.3-1/src/c/matrixOperations/division/i16rdivv.c +++ b/2.3-1/src/c/matrixOperations/division/i16rdivv.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2009 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixDivision.h" diff --git a/2.3-1/src/c/matrixOperations/division/i8ldivma.c b/2.3-1/src/c/matrixOperations/division/i8ldivma.c index 85271c6b..d7ca2fd0 100644 --- a/2.3-1/src/c/matrixOperations/division/i8ldivma.c +++ b/2.3-1/src/c/matrixOperations/division/i8ldivma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #include <string.h> diff --git a/2.3-1/src/c/matrixOperations/division/i8rdivma.c b/2.3-1/src/c/matrixOperations/division/i8rdivma.c index 5095d9c6..0048c036 100644 --- a/2.3-1/src/c/matrixOperations/division/i8rdivma.c +++ b/2.3-1/src/c/matrixOperations/division/i8rdivma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #include <string.h> #include "matrixDivision.h" diff --git a/2.3-1/src/c/matrixOperations/division/i8rdivv.c b/2.3-1/src/c/matrixOperations/division/i8rdivv.c index 04c6c49e..7d262afa 100644 --- a/2.3-1/src/c/matrixOperations/division/i8rdivv.c +++ b/2.3-1/src/c/matrixOperations/division/i8rdivv.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2009 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixDivision.h" diff --git a/2.3-1/src/c/matrixOperations/division/u16ldivma.c b/2.3-1/src/c/matrixOperations/division/u16ldivma.c index fde268fe..d7901f38 100644 --- a/2.3-1/src/c/matrixOperations/division/u16ldivma.c +++ b/2.3-1/src/c/matrixOperations/division/u16ldivma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #include <string.h> diff --git a/2.3-1/src/c/matrixOperations/division/u16rdivma.c b/2.3-1/src/c/matrixOperations/division/u16rdivma.c index a77db453..d6642074 100644 --- a/2.3-1/src/c/matrixOperations/division/u16rdivma.c +++ b/2.3-1/src/c/matrixOperations/division/u16rdivma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #include <string.h> #include "matrixDivision.h" diff --git a/2.3-1/src/c/matrixOperations/division/u16rdivv.c b/2.3-1/src/c/matrixOperations/division/u16rdivv.c index 9fc292c7..66dc2144 100644 --- a/2.3-1/src/c/matrixOperations/division/u16rdivv.c +++ b/2.3-1/src/c/matrixOperations/division/u16rdivv.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2009 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixDivision.h" diff --git a/2.3-1/src/c/matrixOperations/division/u8ldivma.c b/2.3-1/src/c/matrixOperations/division/u8ldivma.c index a046fb41..ce491b4f 100644 --- a/2.3-1/src/c/matrixOperations/division/u8ldivma.c +++ b/2.3-1/src/c/matrixOperations/division/u8ldivma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #include <string.h> diff --git a/2.3-1/src/c/matrixOperations/division/u8rdivma.c b/2.3-1/src/c/matrixOperations/division/u8rdivma.c index 478f6ac9..6ff4b17a 100644 --- a/2.3-1/src/c/matrixOperations/division/u8rdivma.c +++ b/2.3-1/src/c/matrixOperations/division/u8rdivma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdlib.h> #include <string.h> #include "matrixDivision.h" diff --git a/2.3-1/src/c/matrixOperations/division/u8rdivv.c b/2.3-1/src/c/matrixOperations/division/u8rdivv.c index 53ef809d..92e5762e 100644 --- a/2.3-1/src/c/matrixOperations/division/u8rdivv.c +++ b/2.3-1/src/c/matrixOperations/division/u8rdivv.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2009 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixDivision.h" diff --git a/2.3-1/src/c/matrixOperations/eye/i16eyea.c b/2.3-1/src/c/matrixOperations/eye/i16eyea.c index 90d7fe7a..a769061c 100644 --- a/2.3-1/src/c/matrixOperations/eye/i16eyea.c +++ b/2.3-1/src/c/matrixOperations/eye/i16eyea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "eye.h" diff --git a/2.3-1/src/c/matrixOperations/eye/i8eyea.c b/2.3-1/src/c/matrixOperations/eye/i8eyea.c index e2fecca6..d69ac052 100644 --- a/2.3-1/src/c/matrixOperations/eye/i8eyea.c +++ b/2.3-1/src/c/matrixOperations/eye/i8eyea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "eye.h" diff --git a/2.3-1/src/c/matrixOperations/eye/u16eyea.c b/2.3-1/src/c/matrixOperations/eye/u16eyea.c index 63c479fd..bb011986 100644 --- a/2.3-1/src/c/matrixOperations/eye/u16eyea.c +++ b/2.3-1/src/c/matrixOperations/eye/u16eyea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "eye.h" diff --git a/2.3-1/src/c/matrixOperations/eye/u8eyea.c b/2.3-1/src/c/matrixOperations/eye/u8eyea.c index 8278303d..018fc3c9 100644 --- a/2.3-1/src/c/matrixOperations/eye/u8eyea.c +++ b/2.3-1/src/c/matrixOperations/eye/u8eyea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "eye.h" diff --git a/2.3-1/src/c/matrixOperations/includes/diag.h b/2.3-1/src/c/matrixOperations/includes/diag.h index b255c4be..5f97923d 100644 --- a/2.3-1/src/c/matrixOperations/includes/diag.h +++ b/2.3-1/src/c/matrixOperations/includes/diag.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __DIAG_H__ #define __DIAG_H__ diff --git a/2.3-1/src/c/matrixOperations/interfaces/int_cat.h b/2.3-1/src/c/matrixOperations/interfaces/int_cat.h index 7b3107a8..db80bec9 100644 --- a/2.3-1/src/c/matrixOperations/interfaces/int_cat.h +++ b/2.3-1/src/c/matrixOperations/interfaces/int_cat.h @@ -1,4 +1,14 @@ -/* Scilab2C FOSSEE IIT BOMBAY */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_CAT_H #define __INT_CAT_H diff --git a/2.3-1/src/c/matrixOperations/interfaces/int_diag.h b/2.3-1/src/c/matrixOperations/interfaces/int_diag.h index 4d6553c5..339831b1 100644 --- a/2.3-1/src/c/matrixOperations/interfaces/int_diag.h +++ b/2.3-1/src/c/matrixOperations/interfaces/int_diag.h @@ -1,16 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ - -/* THIS IS AN AUTOMATICALLY GENERATED FILE : DO NOT EDIT BY HAND. */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_DIAG_H__ #define __INT_DIAG_H__ diff --git a/2.3-1/src/c/matrixOperations/inversion/i16inverma.c b/2.3-1/src/c/matrixOperations/inversion/i16inverma.c index a6b1c08f..0dd18509 100644 --- a/2.3-1/src/c/matrixOperations/inversion/i16inverma.c +++ b/2.3-1/src/c/matrixOperations/inversion/i16inverma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdio.h> diff --git a/2.3-1/src/c/matrixOperations/inversion/i8inverma.c b/2.3-1/src/c/matrixOperations/inversion/i8inverma.c index 24fb920c..66c66e2f 100644 --- a/2.3-1/src/c/matrixOperations/inversion/i8inverma.c +++ b/2.3-1/src/c/matrixOperations/inversion/i8inverma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdio.h> diff --git a/2.3-1/src/c/matrixOperations/inversion/u16inverma.c b/2.3-1/src/c/matrixOperations/inversion/u16inverma.c index a27182d2..917c9af8 100644 --- a/2.3-1/src/c/matrixOperations/inversion/u16inverma.c +++ b/2.3-1/src/c/matrixOperations/inversion/u16inverma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdio.h> diff --git a/2.3-1/src/c/matrixOperations/inversion/u8inverma.c b/2.3-1/src/c/matrixOperations/inversion/u8inverma.c index 4e8a97c0..2fab6597 100644 --- a/2.3-1/src/c/matrixOperations/inversion/u8inverma.c +++ b/2.3-1/src/c/matrixOperations/inversion/u8inverma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include <stdio.h> diff --git a/2.3-1/src/c/matrixOperations/magnitude/i16magna.c b/2.3-1/src/c/matrixOperations/magnitude/i16magna.c index 884a278e..193d2377 100644 --- a/2.3-1/src/c/matrixOperations/magnitude/i16magna.c +++ b/2.3-1/src/c/matrixOperations/magnitude/i16magna.c @@ -1,4 +1,14 @@ -/* SCilab2C FOSSEE IIT BOMBAY */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ diff --git a/2.3-1/src/c/matrixOperations/magnitude/i16magns.c b/2.3-1/src/c/matrixOperations/magnitude/i16magns.c index d5deb28a..44800ca6 100644 --- a/2.3-1/src/c/matrixOperations/magnitude/i16magns.c +++ b/2.3-1/src/c/matrixOperations/magnitude/i16magns.c @@ -1,5 +1,14 @@ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE -/* SCilab2C FOSSEE IIT BOMBAY */ + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ diff --git a/2.3-1/src/c/matrixOperations/magnitude/i8magna.c b/2.3-1/src/c/matrixOperations/magnitude/i8magna.c index 1a8519a8..8de96b74 100644 --- a/2.3-1/src/c/matrixOperations/magnitude/i8magna.c +++ b/2.3-1/src/c/matrixOperations/magnitude/i8magna.c @@ -1,4 +1,14 @@ -/* SCilab2C FOSSEE IIT BOMBAY */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ diff --git a/2.3-1/src/c/matrixOperations/magnitude/i8magns.c b/2.3-1/src/c/matrixOperations/magnitude/i8magns.c index 1703505d..a13ae3d6 100644 --- a/2.3-1/src/c/matrixOperations/magnitude/i8magns.c +++ b/2.3-1/src/c/matrixOperations/magnitude/i8magns.c @@ -1,5 +1,14 @@ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE -/* SCilab2C FOSSEE IIT BOMBAY */ + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ diff --git a/2.3-1/src/c/matrixOperations/multiplication/i16mulma.c b/2.3-1/src/c/matrixOperations/multiplication/i16mulma.c index b6b882d3..ba46e8e6 100644 --- a/2.3-1/src/c/matrixOperations/multiplication/i16mulma.c +++ b/2.3-1/src/c/matrixOperations/multiplication/i16mulma.c @@ -1,4 +1,14 @@ -/*SCilab2C FOSSEE IIT Bombay*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ /* ** \brief Compute a multiplication for int16 matrixes. diff --git a/2.3-1/src/c/matrixOperations/multiplication/i8mulma.c b/2.3-1/src/c/matrixOperations/multiplication/i8mulma.c index 4fdb203f..88f192d7 100644 --- a/2.3-1/src/c/matrixOperations/multiplication/i8mulma.c +++ b/2.3-1/src/c/matrixOperations/multiplication/i8mulma.c @@ -1,4 +1,14 @@ -/*SCilab2C FOSSEE IIT Bombay*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ /* ** \brief Compute a multiplication for int8 matrixes. diff --git a/2.3-1/src/c/matrixOperations/multiplication/u16mulma.c b/2.3-1/src/c/matrixOperations/multiplication/u16mulma.c index 11f88d89..b15d8441 100644 --- a/2.3-1/src/c/matrixOperations/multiplication/u16mulma.c +++ b/2.3-1/src/c/matrixOperations/multiplication/u16mulma.c @@ -1,4 +1,14 @@ -/*SCilab2C FOSSEE IIT Bombay*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ /* ** \brief Compute a multiplication for uint16 matrixes. diff --git a/2.3-1/src/c/matrixOperations/multiplication/u8mulma.c b/2.3-1/src/c/matrixOperations/multiplication/u8mulma.c index 3660249d..fa4f8518 100644 --- a/2.3-1/src/c/matrixOperations/multiplication/u8mulma.c +++ b/2.3-1/src/c/matrixOperations/multiplication/u8mulma.c @@ -1,4 +1,14 @@ -/*SCilab2C FOSSEE IIT Bombay*/ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ /* ** \brief Compute a multiplication for uint8 matrixes. diff --git a/2.3-1/src/c/matrixOperations/ones/i16onesa.c b/2.3-1/src/c/matrixOperations/ones/i16onesa.c index b7949de7..d8dee192 100644 --- a/2.3-1/src/c/matrixOperations/ones/i16onesa.c +++ b/2.3-1/src/c/matrixOperations/ones/i16onesa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "ones.h" diff --git a/2.3-1/src/c/matrixOperations/ones/i8onesa.c b/2.3-1/src/c/matrixOperations/ones/i8onesa.c index 7c179124..11b48bf2 100644 --- a/2.3-1/src/c/matrixOperations/ones/i8onesa.c +++ b/2.3-1/src/c/matrixOperations/ones/i8onesa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "ones.h" diff --git a/2.3-1/src/c/matrixOperations/ones/u16onesa.c b/2.3-1/src/c/matrixOperations/ones/u16onesa.c index 852ceef3..e91b5a72 100644 --- a/2.3-1/src/c/matrixOperations/ones/u16onesa.c +++ b/2.3-1/src/c/matrixOperations/ones/u16onesa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "ones.h" diff --git a/2.3-1/src/c/matrixOperations/ones/u8onesa.c b/2.3-1/src/c/matrixOperations/ones/u8onesa.c index 7918a962..be9a1bf3 100644 --- a/2.3-1/src/c/matrixOperations/ones/u8onesa.c +++ b/2.3-1/src/c/matrixOperations/ones/u8onesa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "ones.h" diff --git a/2.3-1/src/c/matrixOperations/trace/i16tracea.c b/2.3-1/src/c/matrixOperations/trace/i16tracea.c index 6a3d6a8b..3aeec4e1 100644 --- a/2.3-1/src/c/matrixOperations/trace/i16tracea.c +++ b/2.3-1/src/c/matrixOperations/trace/i16tracea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixTrace.h" diff --git a/2.3-1/src/c/matrixOperations/trace/i8tracea.c b/2.3-1/src/c/matrixOperations/trace/i8tracea.c index 88a1c46e..9158ba45 100644 --- a/2.3-1/src/c/matrixOperations/trace/i8tracea.c +++ b/2.3-1/src/c/matrixOperations/trace/i8tracea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixTrace.h" diff --git a/2.3-1/src/c/matrixOperations/trace/u16tracea.c b/2.3-1/src/c/matrixOperations/trace/u16tracea.c index 3cf9943c..2a85fa30 100644 --- a/2.3-1/src/c/matrixOperations/trace/u16tracea.c +++ b/2.3-1/src/c/matrixOperations/trace/u16tracea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixTrace.h" diff --git a/2.3-1/src/c/matrixOperations/trace/u8tracea.c b/2.3-1/src/c/matrixOperations/trace/u8tracea.c index 97e73e21..2823f6d4 100644 --- a/2.3-1/src/c/matrixOperations/trace/u8tracea.c +++ b/2.3-1/src/c/matrixOperations/trace/u8tracea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixTrace.h" diff --git a/2.3-1/src/c/matrixOperations/transpose/i16transposea.c b/2.3-1/src/c/matrixOperations/transpose/i16transposea.c index 366de067..e370c636 100644 --- a/2.3-1/src/c/matrixOperations/transpose/i16transposea.c +++ b/2.3-1/src/c/matrixOperations/transpose/i16transposea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixTranspose.h" diff --git a/2.3-1/src/c/matrixOperations/transpose/i8transposea.c b/2.3-1/src/c/matrixOperations/transpose/i8transposea.c index 20d451a0..a05ee064 100644 --- a/2.3-1/src/c/matrixOperations/transpose/i8transposea.c +++ b/2.3-1/src/c/matrixOperations/transpose/i8transposea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixTranspose.h" diff --git a/2.3-1/src/c/matrixOperations/transpose/u16transposea.c b/2.3-1/src/c/matrixOperations/transpose/u16transposea.c index 33b35ecb..8bf659df 100644 --- a/2.3-1/src/c/matrixOperations/transpose/u16transposea.c +++ b/2.3-1/src/c/matrixOperations/transpose/u16transposea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixTranspose.h" diff --git a/2.3-1/src/c/matrixOperations/transpose/u8transposea.c b/2.3-1/src/c/matrixOperations/transpose/u8transposea.c index 2d0dd743..54b53324 100644 --- a/2.3-1/src/c/matrixOperations/transpose/u8transposea.c +++ b/2.3-1/src/c/matrixOperations/transpose/u8transposea.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "matrixTranspose.h" diff --git a/2.3-1/src/c/matrixOperations/zeros/i16zerosa.c b/2.3-1/src/c/matrixOperations/zeros/i16zerosa.c index f1ed904b..13ff62b6 100644 --- a/2.3-1/src/c/matrixOperations/zeros/i16zerosa.c +++ b/2.3-1/src/c/matrixOperations/zeros/i16zerosa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "zeros.h" diff --git a/2.3-1/src/c/matrixOperations/zeros/i8zerosa.c b/2.3-1/src/c/matrixOperations/zeros/i8zerosa.c index e22e06a8..f8808c0a 100644 --- a/2.3-1/src/c/matrixOperations/zeros/i8zerosa.c +++ b/2.3-1/src/c/matrixOperations/zeros/i8zerosa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "zeros.h" diff --git a/2.3-1/src/c/matrixOperations/zeros/u16zerosa.c b/2.3-1/src/c/matrixOperations/zeros/u16zerosa.c index 6c98d2f7..3db1ac5a 100644 --- a/2.3-1/src/c/matrixOperations/zeros/u16zerosa.c +++ b/2.3-1/src/c/matrixOperations/zeros/u16zerosa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "zeros.h" diff --git a/2.3-1/src/c/matrixOperations/zeros/u8zerosa.c b/2.3-1/src/c/matrixOperations/zeros/u8zerosa.c index 42036148..ee239a67 100644 --- a/2.3-1/src/c/matrixOperations/zeros/u8zerosa.c +++ b/2.3-1/src/c/matrixOperations/zeros/u8zerosa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "zeros.h" diff --git a/2.3-1/src/c/operations/addition/i16adda.c b/2.3-1/src/c/operations/addition/i16adda.c index 8c28a989..db85675a 100644 --- a/2.3-1/src/c/operations/addition/i16adda.c +++ b/2.3-1/src/c/operations/addition/i16adda.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "addition.h" diff --git a/2.3-1/src/c/operations/addition/i16adds.c b/2.3-1/src/c/operations/addition/i16adds.c index ea36a911..88c927d4 100644 --- a/2.3-1/src/c/operations/addition/i16adds.c +++ b/2.3-1/src/c/operations/addition/i16adds.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "addition.h" diff --git a/2.3-1/src/c/operations/addition/i8adda.c b/2.3-1/src/c/operations/addition/i8adda.c index 2417bda7..5e556d35 100644 --- a/2.3-1/src/c/operations/addition/i8adda.c +++ b/2.3-1/src/c/operations/addition/i8adda.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "addition.h" diff --git a/2.3-1/src/c/operations/addition/i8adds.c b/2.3-1/src/c/operations/addition/i8adds.c index aee40458..0520912b 100644 --- a/2.3-1/src/c/operations/addition/i8adds.c +++ b/2.3-1/src/c/operations/addition/i8adds.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "addition.h" diff --git a/2.3-1/src/c/operations/addition/u16adda.c b/2.3-1/src/c/operations/addition/u16adda.c index 884e0994..3884aa3c 100644 --- a/2.3-1/src/c/operations/addition/u16adda.c +++ b/2.3-1/src/c/operations/addition/u16adda.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "addition.h" diff --git a/2.3-1/src/c/operations/addition/u16adds.c b/2.3-1/src/c/operations/addition/u16adds.c index f52dd055..2d49e905 100644 --- a/2.3-1/src/c/operations/addition/u16adds.c +++ b/2.3-1/src/c/operations/addition/u16adds.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "addition.h" diff --git a/2.3-1/src/c/operations/addition/u8adda.c b/2.3-1/src/c/operations/addition/u8adda.c index 4c195b07..01c7608b 100644 --- a/2.3-1/src/c/operations/addition/u8adda.c +++ b/2.3-1/src/c/operations/addition/u8adda.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "addition.h" diff --git a/2.3-1/src/c/operations/addition/u8adds.c b/2.3-1/src/c/operations/addition/u8adds.c index b729c3bd..ad258232 100644 --- a/2.3-1/src/c/operations/addition/u8adds.c +++ b/2.3-1/src/c/operations/addition/u8adds.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "addition.h" diff --git a/2.3-1/src/c/operations/division/i16ldiva.c b/2.3-1/src/c/operations/division/i16ldiva.c index a89aa69d..4106acf1 100644 --- a/2.3-1/src/c/operations/division/i16ldiva.c +++ b/2.3-1/src/c/operations/division/i16ldiva.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/i16ldivs.c b/2.3-1/src/c/operations/division/i16ldivs.c index b470b16a..d807e491 100644 --- a/2.3-1/src/c/operations/division/i16ldivs.c +++ b/2.3-1/src/c/operations/division/i16ldivs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/i16rdiva.c b/2.3-1/src/c/operations/division/i16rdiva.c index ad7672c2..149e8efb 100644 --- a/2.3-1/src/c/operations/division/i16rdiva.c +++ b/2.3-1/src/c/operations/division/i16rdiva.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/i16rdivs.c b/2.3-1/src/c/operations/division/i16rdivs.c index e4d54823..418e5704 100644 --- a/2.3-1/src/c/operations/division/i16rdivs.c +++ b/2.3-1/src/c/operations/division/i16rdivs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/i8ldiva.c b/2.3-1/src/c/operations/division/i8ldiva.c index 0f471171..b7e0a7b9 100644 --- a/2.3-1/src/c/operations/division/i8ldiva.c +++ b/2.3-1/src/c/operations/division/i8ldiva.c @@ -1,15 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/i8ldivs.c b/2.3-1/src/c/operations/division/i8ldivs.c index 6bf0d266..65b2ff89 100644 --- a/2.3-1/src/c/operations/division/i8ldivs.c +++ b/2.3-1/src/c/operations/division/i8ldivs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/i8rdiva.c b/2.3-1/src/c/operations/division/i8rdiva.c index 0e6b217a..f3be2a03 100644 --- a/2.3-1/src/c/operations/division/i8rdiva.c +++ b/2.3-1/src/c/operations/division/i8rdiva.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/i8rdivs.c b/2.3-1/src/c/operations/division/i8rdivs.c index db8062fa..54e39554 100644 --- a/2.3-1/src/c/operations/division/i8rdivs.c +++ b/2.3-1/src/c/operations/division/i8rdivs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/u16ldiva.c b/2.3-1/src/c/operations/division/u16ldiva.c index 55d3222e..bc24ab05 100644 --- a/2.3-1/src/c/operations/division/u16ldiva.c +++ b/2.3-1/src/c/operations/division/u16ldiva.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/u16ldivs.c b/2.3-1/src/c/operations/division/u16ldivs.c index 5383ebf4..b1d85182 100644 --- a/2.3-1/src/c/operations/division/u16ldivs.c +++ b/2.3-1/src/c/operations/division/u16ldivs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/u16rdiva.c b/2.3-1/src/c/operations/division/u16rdiva.c index eb21be16..a13deccb 100644 --- a/2.3-1/src/c/operations/division/u16rdiva.c +++ b/2.3-1/src/c/operations/division/u16rdiva.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/u16rdivs.c b/2.3-1/src/c/operations/division/u16rdivs.c index 68b998fd..d55c07f4 100644 --- a/2.3-1/src/c/operations/division/u16rdivs.c +++ b/2.3-1/src/c/operations/division/u16rdivs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/u8ldiva.c b/2.3-1/src/c/operations/division/u8ldiva.c index 76e59ad2..8dc948f9 100644 --- a/2.3-1/src/c/operations/division/u8ldiva.c +++ b/2.3-1/src/c/operations/division/u8ldiva.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/u8ldivs.c b/2.3-1/src/c/operations/division/u8ldivs.c index 0694d5f0..bf16943f 100644 --- a/2.3-1/src/c/operations/division/u8ldivs.c +++ b/2.3-1/src/c/operations/division/u8ldivs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/u8rdiva.c b/2.3-1/src/c/operations/division/u8rdiva.c index d1eb5c4b..7ed7f9cc 100644 --- a/2.3-1/src/c/operations/division/u8rdiva.c +++ b/2.3-1/src/c/operations/division/u8rdiva.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/division/u8rdivs.c b/2.3-1/src/c/operations/division/u8rdivs.c index e6364a86..9d04ebfa 100644 --- a/2.3-1/src/c/operations/division/u8rdivs.c +++ b/2.3-1/src/c/operations/division/u8rdivs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "division.h" diff --git a/2.3-1/src/c/operations/multiplication/i16mula.c b/2.3-1/src/c/operations/multiplication/i16mula.c index b16378dd..bffa107e 100644 --- a/2.3-1/src/c/operations/multiplication/i16mula.c +++ b/2.3-1/src/c/operations/multiplication/i16mula.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/i16muls.c b/2.3-1/src/c/operations/multiplication/i16muls.c index 687c217d..4aaa5d11 100644 --- a/2.3-1/src/c/operations/multiplication/i16muls.c +++ b/2.3-1/src/c/operations/multiplication/i16muls.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/i16mulv.c b/2.3-1/src/c/operations/multiplication/i16mulv.c index 37569d8f..3f3cc8d1 100644 --- a/2.3-1/src/c/operations/multiplication/i16mulv.c +++ b/2.3-1/src/c/operations/multiplication/i16mulv.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/i8mula.c b/2.3-1/src/c/operations/multiplication/i8mula.c index 4d27d628..c5c6114d 100644 --- a/2.3-1/src/c/operations/multiplication/i8mula.c +++ b/2.3-1/src/c/operations/multiplication/i8mula.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/i8muls.c b/2.3-1/src/c/operations/multiplication/i8muls.c index a19bd7b1..d6566208 100644 --- a/2.3-1/src/c/operations/multiplication/i8muls.c +++ b/2.3-1/src/c/operations/multiplication/i8muls.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/i8mulv.c b/2.3-1/src/c/operations/multiplication/i8mulv.c index a617cebe..6dc1ec4e 100644 --- a/2.3-1/src/c/operations/multiplication/i8mulv.c +++ b/2.3-1/src/c/operations/multiplication/i8mulv.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/u16mula.c b/2.3-1/src/c/operations/multiplication/u16mula.c index b6563d22..5be6e64e 100644 --- a/2.3-1/src/c/operations/multiplication/u16mula.c +++ b/2.3-1/src/c/operations/multiplication/u16mula.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/u16muls.c b/2.3-1/src/c/operations/multiplication/u16muls.c index 7b202d5b..10380c0d 100644 --- a/2.3-1/src/c/operations/multiplication/u16muls.c +++ b/2.3-1/src/c/operations/multiplication/u16muls.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/u16mulv.c b/2.3-1/src/c/operations/multiplication/u16mulv.c index ae7f9fbb..5cd9805c 100644 --- a/2.3-1/src/c/operations/multiplication/u16mulv.c +++ b/2.3-1/src/c/operations/multiplication/u16mulv.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/u8mula.c b/2.3-1/src/c/operations/multiplication/u8mula.c index ff76fa75..7ff2dd0b 100644 --- a/2.3-1/src/c/operations/multiplication/u8mula.c +++ b/2.3-1/src/c/operations/multiplication/u8mula.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/u8muls.c b/2.3-1/src/c/operations/multiplication/u8muls.c index bc7d80a3..7acf5b58 100644 --- a/2.3-1/src/c/operations/multiplication/u8muls.c +++ b/2.3-1/src/c/operations/multiplication/u8muls.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/multiplication/u8mulv.c b/2.3-1/src/c/operations/multiplication/u8mulv.c index 86816592..9ae063e8 100644 --- a/2.3-1/src/c/operations/multiplication/u8mulv.c +++ b/2.3-1/src/c/operations/multiplication/u8mulv.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "multiplication.h" diff --git a/2.3-1/src/c/operations/subtraction/i16diffa.c b/2.3-1/src/c/operations/subtraction/i16diffa.c index ca722af0..5a3c78c7 100644 --- a/2.3-1/src/c/operations/subtraction/i16diffa.c +++ b/2.3-1/src/c/operations/subtraction/i16diffa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "subtraction.h" diff --git a/2.3-1/src/c/operations/subtraction/i16diffs.c b/2.3-1/src/c/operations/subtraction/i16diffs.c index 6ca2e52c..c73bab0b 100644 --- a/2.3-1/src/c/operations/subtraction/i16diffs.c +++ b/2.3-1/src/c/operations/subtraction/i16diffs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "subtraction.h" diff --git a/2.3-1/src/c/operations/subtraction/i8diffa.c b/2.3-1/src/c/operations/subtraction/i8diffa.c index ec966bf5..8eae7597 100644 --- a/2.3-1/src/c/operations/subtraction/i8diffa.c +++ b/2.3-1/src/c/operations/subtraction/i8diffa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "subtraction.h" diff --git a/2.3-1/src/c/operations/subtraction/i8diffs.c b/2.3-1/src/c/operations/subtraction/i8diffs.c index bbc9a1a4..88eaf4d1 100644 --- a/2.3-1/src/c/operations/subtraction/i8diffs.c +++ b/2.3-1/src/c/operations/subtraction/i8diffs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "subtraction.h" diff --git a/2.3-1/src/c/operations/subtraction/u16diffa.c b/2.3-1/src/c/operations/subtraction/u16diffa.c index 7c216bb8..e9a30499 100644 --- a/2.3-1/src/c/operations/subtraction/u16diffa.c +++ b/2.3-1/src/c/operations/subtraction/u16diffa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "subtraction.h" diff --git a/2.3-1/src/c/operations/subtraction/u16diffs.c b/2.3-1/src/c/operations/subtraction/u16diffs.c index bd52d66a..baf4e078 100644 --- a/2.3-1/src/c/operations/subtraction/u16diffs.c +++ b/2.3-1/src/c/operations/subtraction/u16diffs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "subtraction.h" diff --git a/2.3-1/src/c/operations/subtraction/u8diffa.c b/2.3-1/src/c/operations/subtraction/u8diffa.c index 42c06f7d..c1512e91 100644 --- a/2.3-1/src/c/operations/subtraction/u8diffa.c +++ b/2.3-1/src/c/operations/subtraction/u8diffa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "subtraction.h" diff --git a/2.3-1/src/c/operations/subtraction/u8diffs.c b/2.3-1/src/c/operations/subtraction/u8diffs.c index bc9beacb..f71192ac 100644 --- a/2.3-1/src/c/operations/subtraction/u8diffs.c +++ b/2.3-1/src/c/operations/subtraction/u8diffs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "subtraction.h" diff --git a/2.3-1/src/c/scilab-arduino/cmd_analog_in/u8cmd_analog_ins.c b/2.3-1/src/c/scilab-arduino/cmd_analog_in/u8cmd_analog_ins.c index 29e6c0f7..42005d1c 100644 --- a/2.3-1/src/c/scilab-arduino/cmd_analog_in/u8cmd_analog_ins.c +++ b/2.3-1/src/c/scilab-arduino/cmd_analog_in/u8cmd_analog_ins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cmd_analog_in.h" #include "Arduino.h" diff --git a/2.3-1/src/c/scilab-arduino/cmd_analog_out/u8cmd_analog_outs.c b/2.3-1/src/c/scilab-arduino/cmd_analog_out/u8cmd_analog_outs.c index 07e1805c..a5b8513e 100644 --- a/2.3-1/src/c/scilab-arduino/cmd_analog_out/u8cmd_analog_outs.c +++ b/2.3-1/src/c/scilab-arduino/cmd_analog_out/u8cmd_analog_outs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cmd_analog_out.h" #include "Arduino.h" diff --git a/2.3-1/src/c/scilab-arduino/cmd_dcmotor_run/u8cmd_dcmotor_runs.c b/2.3-1/src/c/scilab-arduino/cmd_dcmotor_run/u8cmd_dcmotor_runs.c index ff2f6e5f..6e1c2caa 100644 --- a/2.3-1/src/c/scilab-arduino/cmd_dcmotor_run/u8cmd_dcmotor_runs.c +++ b/2.3-1/src/c/scilab-arduino/cmd_dcmotor_run/u8cmd_dcmotor_runs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cmd_dcmotor_run.h" #include "Arduino.h" diff --git a/2.3-1/src/c/scilab-arduino/cmd_dcmotor_setup/u8cmd_dcmotor_setups.c b/2.3-1/src/c/scilab-arduino/cmd_dcmotor_setup/u8cmd_dcmotor_setups.c index 194074e1..389f9111 100644 --- a/2.3-1/src/c/scilab-arduino/cmd_dcmotor_setup/u8cmd_dcmotor_setups.c +++ b/2.3-1/src/c/scilab-arduino/cmd_dcmotor_setup/u8cmd_dcmotor_setups.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cmd_dcmotor_setup.h" #include "Arduino.h" diff --git a/2.3-1/src/c/scilab-arduino/cmd_digital_in/u8cmd_digital_ins.c b/2.3-1/src/c/scilab-arduino/cmd_digital_in/u8cmd_digital_ins.c index 129db1a9..da5ca78d 100644 --- a/2.3-1/src/c/scilab-arduino/cmd_digital_in/u8cmd_digital_ins.c +++ b/2.3-1/src/c/scilab-arduino/cmd_digital_in/u8cmd_digital_ins.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cmd_digital_in.h" #include "Arduino.h" diff --git a/2.3-1/src/c/scilab-arduino/cmd_digital_out/u8cmd_digital_outs.c b/2.3-1/src/c/scilab-arduino/cmd_digital_out/u8cmd_digital_outs.c index 58e7a85d..64af7b5c 100644 --- a/2.3-1/src/c/scilab-arduino/cmd_digital_out/u8cmd_digital_outs.c +++ b/2.3-1/src/c/scilab-arduino/cmd_digital_out/u8cmd_digital_outs.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cmd_digital_out.h" #include "Arduino.h" diff --git a/2.3-1/src/c/scilab-arduino/cmd_servo_attach/u8cmd_servo_attachs.cpp b/2.3-1/src/c/scilab-arduino/cmd_servo_attach/u8cmd_servo_attachs.cpp index ae2c68c5..b4322c7f 100644 --- a/2.3-1/src/c/scilab-arduino/cmd_servo_attach/u8cmd_servo_attachs.cpp +++ b/2.3-1/src/c/scilab-arduino/cmd_servo_attach/u8cmd_servo_attachs.cpp @@ -1,7 +1,14 @@ -/* - Scilab2C FOSSEE IIT BOMBAY - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cmd_servo_attach.h" #include "Arduino.h" #include<Servo.h> diff --git a/2.3-1/src/c/scilab-arduino/cmd_servo_detach/u8cmd_servo_detachs.cpp b/2.3-1/src/c/scilab-arduino/cmd_servo_detach/u8cmd_servo_detachs.cpp index c8c5bebb..08ea03f4 100644 --- a/2.3-1/src/c/scilab-arduino/cmd_servo_detach/u8cmd_servo_detachs.cpp +++ b/2.3-1/src/c/scilab-arduino/cmd_servo_detach/u8cmd_servo_detachs.cpp @@ -1,6 +1,15 @@ -/* - Scilab2C FOSSEE IIT BOMBAY - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "cmd_servo_detach.h" #include "Arduino.h" #include<Servo.h> diff --git a/2.3-1/src/c/scilab-arduino/cmd_servo_move/u8cmd_servo_moves.cpp b/2.3-1/src/c/scilab-arduino/cmd_servo_move/u8cmd_servo_moves.cpp index 94f35639..c7c6fa7d 100644 --- a/2.3-1/src/c/scilab-arduino/cmd_servo_move/u8cmd_servo_moves.cpp +++ b/2.3-1/src/c/scilab-arduino/cmd_servo_move/u8cmd_servo_moves.cpp @@ -1,6 +1,14 @@ -/* - Scilab2C FOSSEE IIT BOMBAY - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "cmd_servo_move.h" #include "Arduino.h" diff --git a/2.3-1/src/c/scilab-arduino/default_files/sci2c_arduino.ino b/2.3-1/src/c/scilab-arduino/default_files/sci2c_arduino.ino index 2b30456c..df28950c 100644 --- a/2.3-1/src/c/scilab-arduino/default_files/sci2c_arduino.ino +++ b/2.3-1/src/c/scilab-arduino/default_files/sci2c_arduino.ino @@ -1,3 +1,15 @@ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "Arduino.h" #include <loop_arduino.h> #include <setup_arduino.h> diff --git a/2.3-1/src/c/scilab-arduino/includes/cmd_analog_in.h b/2.3-1/src/c/scilab-arduino/includes/cmd_analog_in.h index 1ab9f3ae..0c186569 100644 --- a/2.3-1/src/c/scilab-arduino/includes/cmd_analog_in.h +++ b/2.3-1/src/c/scilab-arduino/includes/cmd_analog_in.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __CMD_ANALOG_IN_H__ diff --git a/2.3-1/src/c/scilab-arduino/includes/cmd_analog_out.h b/2.3-1/src/c/scilab-arduino/includes/cmd_analog_out.h index 5f9e5272..54e51f59 100644 --- a/2.3-1/src/c/scilab-arduino/includes/cmd_analog_out.h +++ b/2.3-1/src/c/scilab-arduino/includes/cmd_analog_out.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __CMD_ANALOG_OUT_H__ diff --git a/2.3-1/src/c/scilab-arduino/includes/cmd_dcmotor_run.h b/2.3-1/src/c/scilab-arduino/includes/cmd_dcmotor_run.h index 4bc1ccc3..2b69c99b 100644 --- a/2.3-1/src/c/scilab-arduino/includes/cmd_dcmotor_run.h +++ b/2.3-1/src/c/scilab-arduino/includes/cmd_dcmotor_run.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __CMD_DCMOTOR_RUN_H__ diff --git a/2.3-1/src/c/scilab-arduino/includes/cmd_dcmotor_setup.h b/2.3-1/src/c/scilab-arduino/includes/cmd_dcmotor_setup.h index e7de474c..cecd4659 100644 --- a/2.3-1/src/c/scilab-arduino/includes/cmd_dcmotor_setup.h +++ b/2.3-1/src/c/scilab-arduino/includes/cmd_dcmotor_setup.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __CMD_DCMOTOR_SETUP_H__ diff --git a/2.3-1/src/c/scilab-arduino/includes/cmd_digital_in.h b/2.3-1/src/c/scilab-arduino/includes/cmd_digital_in.h index 96fd24bb..51226a6f 100644 --- a/2.3-1/src/c/scilab-arduino/includes/cmd_digital_in.h +++ b/2.3-1/src/c/scilab-arduino/includes/cmd_digital_in.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __CMD_DIGITAL_IN_H__ diff --git a/2.3-1/src/c/scilab-arduino/includes/cmd_digital_out.h b/2.3-1/src/c/scilab-arduino/includes/cmd_digital_out.h index a0150ce5..1e837e53 100644 --- a/2.3-1/src/c/scilab-arduino/includes/cmd_digital_out.h +++ b/2.3-1/src/c/scilab-arduino/includes/cmd_digital_out.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __CMD_DIGITAL_OUT_H__ diff --git a/2.3-1/src/c/scilab-arduino/includes/cmd_servo_attach.h b/2.3-1/src/c/scilab-arduino/includes/cmd_servo_attach.h index 87078330..12c2c013 100644 --- a/2.3-1/src/c/scilab-arduino/includes/cmd_servo_attach.h +++ b/2.3-1/src/c/scilab-arduino/includes/cmd_servo_attach.h @@ -1,6 +1,14 @@ -/* - Scilab2C FOSSEE IIT Bombay - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __CMD_SERVO_ATTACH_H__ diff --git a/2.3-1/src/c/scilab-arduino/includes/cmd_servo_detach.h b/2.3-1/src/c/scilab-arduino/includes/cmd_servo_detach.h index 6ac5e2b4..daa5fd2b 100644 --- a/2.3-1/src/c/scilab-arduino/includes/cmd_servo_detach.h +++ b/2.3-1/src/c/scilab-arduino/includes/cmd_servo_detach.h @@ -1,6 +1,14 @@ -/* - Scilab2C FOSSEE IIT Bombay - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __CMD_SERVO_DETACH_H__ diff --git a/2.3-1/src/c/scilab-arduino/includes/cmd_servo_move.h b/2.3-1/src/c/scilab-arduino/includes/cmd_servo_move.h index 7f9bc0d4..79c16b46 100644 --- a/2.3-1/src/c/scilab-arduino/includes/cmd_servo_move.h +++ b/2.3-1/src/c/scilab-arduino/includes/cmd_servo_move.h @@ -1,6 +1,14 @@ -/* - Scilab2C FOSSEE IIT Bombay - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __CMD_SERVO_MOVE_H__ diff --git a/2.3-1/src/c/scilab-arduino/includes/sleep.h b/2.3-1/src/c/scilab-arduino/includes/sleep.h index 8daab69a..8763f5f4 100644 --- a/2.3-1/src/c/scilab-arduino/includes/sleep.h +++ b/2.3-1/src/c/scilab-arduino/includes/sleep.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __SLEEP_H__ diff --git a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_analog_in.h b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_analog_in.h index 0df8fcbf..7358509b 100644 --- a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_analog_in.h +++ b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_analog_in.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_CMD_ANALOG_IN_H__ diff --git a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_analog_out.h b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_analog_out.h index 24105232..80ed7ab9 100644 --- a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_analog_out.h +++ b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_analog_out.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_CMD_ANALOG_OUT_H__ diff --git a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_dcmotor.h b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_dcmotor.h index 7f8db414..61e0d2e3 100644 --- a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_dcmotor.h +++ b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_dcmotor.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_CMD_DCMOTOR_H__ diff --git a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_digital_in.h b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_digital_in.h index 04b773c6..4e5e575d 100644 --- a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_digital_in.h +++ b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_digital_in.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_CMD_DIGITAL_IN_H__ diff --git a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_digital_out.h b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_digital_out.h index 009ff7d4..92a92c68 100644 --- a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_digital_out.h +++ b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_digital_out.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_CMD_DIGITAL_OUT_H__ diff --git a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_servo.h b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_servo.h index 3b482733..a431fe14 100644 --- a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_servo.h +++ b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_servo.h @@ -1,6 +1,14 @@ -/* - Scilab2C FOSSEE IIT BOMBAY - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_CMD_SERVO_H__ diff --git a/2.3-1/src/c/scilab-arduino/interfaces/int_sleep.h b/2.3-1/src/c/scilab-arduino/interfaces/int_sleep.h index a0d3545d..f3a697f4 100644 --- a/2.3-1/src/c/scilab-arduino/interfaces/int_sleep.h +++ b/2.3-1/src/c/scilab-arduino/interfaces/int_sleep.h @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #ifndef __INT_SLEEP_H__ diff --git a/2.3-1/src/c/scilab-arduino/sleep/u16sleeps.c b/2.3-1/src/c/scilab-arduino/sleep/u16sleeps.c index fc59ca8c..88f8a66d 100644 --- a/2.3-1/src/c/scilab-arduino/sleep/u16sleeps.c +++ b/2.3-1/src/c/scilab-arduino/sleep/u16sleeps.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008 - INRIA - Arnaud TORSET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sleep.h" diff --git a/2.3-1/src/c/statisticsFunctions/max/i16columnmaxa.c b/2.3-1/src/c/statisticsFunctions/max/i16columnmaxa.c index a3af3a4a..87cc579c 100644 --- a/2.3-1/src/c/statisticsFunctions/max/i16columnmaxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/i16columnmaxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" diff --git a/2.3-1/src/c/statisticsFunctions/max/i16maxa.c b/2.3-1/src/c/statisticsFunctions/max/i16maxa.c index 515071d0..b2eab344 100644 --- a/2.3-1/src/c/statisticsFunctions/max/i16maxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/i16maxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" diff --git a/2.3-1/src/c/statisticsFunctions/max/i16rowmaxa.c b/2.3-1/src/c/statisticsFunctions/max/i16rowmaxa.c index 317942e8..46c4ae29 100644 --- a/2.3-1/src/c/statisticsFunctions/max/i16rowmaxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/i16rowmaxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" diff --git a/2.3-1/src/c/statisticsFunctions/max/i8columnmaxa.c b/2.3-1/src/c/statisticsFunctions/max/i8columnmaxa.c index 0d46f782..6c7ea25c 100644 --- a/2.3-1/src/c/statisticsFunctions/max/i8columnmaxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/i8columnmaxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" diff --git a/2.3-1/src/c/statisticsFunctions/max/i8maxa.c b/2.3-1/src/c/statisticsFunctions/max/i8maxa.c index bccb8575..d57b9957 100644 --- a/2.3-1/src/c/statisticsFunctions/max/i8maxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/i8maxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" int8 i8maxa(int8 *in, int size) { diff --git a/2.3-1/src/c/statisticsFunctions/max/i8rowmaxa.c b/2.3-1/src/c/statisticsFunctions/max/i8rowmaxa.c index 44ca17a5..677c61c7 100644 --- a/2.3-1/src/c/statisticsFunctions/max/i8rowmaxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/i8rowmaxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" diff --git a/2.3-1/src/c/statisticsFunctions/max/u16columnmaxa.c b/2.3-1/src/c/statisticsFunctions/max/u16columnmaxa.c index 91f950df..5b4f4236 100644 --- a/2.3-1/src/c/statisticsFunctions/max/u16columnmaxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/u16columnmaxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" diff --git a/2.3-1/src/c/statisticsFunctions/max/u16maxa.c b/2.3-1/src/c/statisticsFunctions/max/u16maxa.c index 5c1b1360..7c9078d5 100644 --- a/2.3-1/src/c/statisticsFunctions/max/u16maxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/u16maxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" uint16 u16maxa(uint16 *in, int size) { diff --git a/2.3-1/src/c/statisticsFunctions/max/u16rowmaxa.c b/2.3-1/src/c/statisticsFunctions/max/u16rowmaxa.c index c3b89179..eacbe848 100644 --- a/2.3-1/src/c/statisticsFunctions/max/u16rowmaxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/u16rowmaxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" void u16rowmaxa(uint16 *in, int rows, int columns, uint16* out) { diff --git a/2.3-1/src/c/statisticsFunctions/max/u8columnmaxa.c b/2.3-1/src/c/statisticsFunctions/max/u8columnmaxa.c index fb90ae35..ac9bc086 100644 --- a/2.3-1/src/c/statisticsFunctions/max/u8columnmaxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/u8columnmaxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" diff --git a/2.3-1/src/c/statisticsFunctions/max/u8maxa.c b/2.3-1/src/c/statisticsFunctions/max/u8maxa.c index 51e0dea5..3f84af41 100644 --- a/2.3-1/src/c/statisticsFunctions/max/u8maxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/u8maxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" diff --git a/2.3-1/src/c/statisticsFunctions/max/u8rowmaxa.c b/2.3-1/src/c/statisticsFunctions/max/u8rowmaxa.c index 57c62f4d..0ddae26d 100644 --- a/2.3-1/src/c/statisticsFunctions/max/u8rowmaxa.c +++ b/2.3-1/src/c/statisticsFunctions/max/u8rowmaxa.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMax.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/i16columnmina.c b/2.3-1/src/c/statisticsFunctions/min/i16columnmina.c index d38b7b5d..64ec334b 100644 --- a/2.3-1/src/c/statisticsFunctions/min/i16columnmina.c +++ b/2.3-1/src/c/statisticsFunctions/min/i16columnmina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/i16mina.c b/2.3-1/src/c/statisticsFunctions/min/i16mina.c index 6afdd5de..402b946e 100644 --- a/2.3-1/src/c/statisticsFunctions/min/i16mina.c +++ b/2.3-1/src/c/statisticsFunctions/min/i16mina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/i16rowmina.c b/2.3-1/src/c/statisticsFunctions/min/i16rowmina.c index adeeaaa4..51f575a6 100644 --- a/2.3-1/src/c/statisticsFunctions/min/i16rowmina.c +++ b/2.3-1/src/c/statisticsFunctions/min/i16rowmina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/i8columnmina.c b/2.3-1/src/c/statisticsFunctions/min/i8columnmina.c index 1e97d621..041bc9b4 100644 --- a/2.3-1/src/c/statisticsFunctions/min/i8columnmina.c +++ b/2.3-1/src/c/statisticsFunctions/min/i8columnmina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/i8mina.c b/2.3-1/src/c/statisticsFunctions/min/i8mina.c index 07e8a108..f7acac73 100644 --- a/2.3-1/src/c/statisticsFunctions/min/i8mina.c +++ b/2.3-1/src/c/statisticsFunctions/min/i8mina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/i8rowmina.c b/2.3-1/src/c/statisticsFunctions/min/i8rowmina.c index 4ce9edc5..1c573823 100644 --- a/2.3-1/src/c/statisticsFunctions/min/i8rowmina.c +++ b/2.3-1/src/c/statisticsFunctions/min/i8rowmina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/u16columnmina.c b/2.3-1/src/c/statisticsFunctions/min/u16columnmina.c index 96c86a60..1df155d2 100644 --- a/2.3-1/src/c/statisticsFunctions/min/u16columnmina.c +++ b/2.3-1/src/c/statisticsFunctions/min/u16columnmina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/u16mina.c b/2.3-1/src/c/statisticsFunctions/min/u16mina.c index 07c24eac..e09f0449 100644 --- a/2.3-1/src/c/statisticsFunctions/min/u16mina.c +++ b/2.3-1/src/c/statisticsFunctions/min/u16mina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/u16rowmina.c b/2.3-1/src/c/statisticsFunctions/min/u16rowmina.c index 5180977e..dc4ba080 100644 --- a/2.3-1/src/c/statisticsFunctions/min/u16rowmina.c +++ b/2.3-1/src/c/statisticsFunctions/min/u16rowmina.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/u8columnmina.c b/2.3-1/src/c/statisticsFunctions/min/u8columnmina.c index 4ced0968..07269fa4 100644 --- a/2.3-1/src/c/statisticsFunctions/min/u8columnmina.c +++ b/2.3-1/src/c/statisticsFunctions/min/u8columnmina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/u8mina.c b/2.3-1/src/c/statisticsFunctions/min/u8mina.c index 16a7bb4c..579d1b3c 100644 --- a/2.3-1/src/c/statisticsFunctions/min/u8mina.c +++ b/2.3-1/src/c/statisticsFunctions/min/u8mina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/min/u8rowmina.c b/2.3-1/src/c/statisticsFunctions/min/u8rowmina.c index ddbe274c..2f1de4f1 100644 --- a/2.3-1/src/c/statisticsFunctions/min/u8rowmina.c +++ b/2.3-1/src/c/statisticsFunctions/min/u8rowmina.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Mushir + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "statMin.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/i16columnsuma.c b/2.3-1/src/c/statisticsFunctions/sum/i16columnsuma.c index c097be8b..a34cea13 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/i16columnsuma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/i16columnsuma.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/i16rowsuma.c b/2.3-1/src/c/statisticsFunctions/sum/i16rowsuma.c index 2d9c3122..03d8ff29 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/i16rowsuma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/i16rowsuma.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/i16suma.c b/2.3-1/src/c/statisticsFunctions/sum/i16suma.c index c1a392ac..f5d08093 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/i16suma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/i16suma.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/i8columnsuma.c b/2.3-1/src/c/statisticsFunctions/sum/i8columnsuma.c index 6550a18a..bb79897c 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/i8columnsuma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/i8columnsuma.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/i8rowsuma.c b/2.3-1/src/c/statisticsFunctions/sum/i8rowsuma.c index c975bae3..2008f32d 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/i8rowsuma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/i8rowsuma.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/i8suma.c b/2.3-1/src/c/statisticsFunctions/sum/i8suma.c index e413ede3..468a98b9 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/i8suma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/i8suma.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/u16columnsuma.c b/2.3-1/src/c/statisticsFunctions/sum/u16columnsuma.c index 895fe04f..82b07757 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/u16columnsuma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/u16columnsuma.c @@ -1,14 +1,16 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + + #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/u16rowsuma.c b/2.3-1/src/c/statisticsFunctions/sum/u16rowsuma.c index 3adb206e..535e302f 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/u16rowsuma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/u16rowsuma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/u16suma.c b/2.3-1/src/c/statisticsFunctions/sum/u16suma.c index 0130f7af..5e5620c1 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/u16suma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/u16suma.c @@ -1,14 +1,14 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/u8columnsuma.c b/2.3-1/src/c/statisticsFunctions/sum/u8columnsuma.c index 5484b4a4..f3e30411 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/u8columnsuma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/u8columnsuma.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/u8rowsuma.c b/2.3-1/src/c/statisticsFunctions/sum/u8rowsuma.c index 938af400..53a49442 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/u8rowsuma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/u8rowsuma.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sum.h" diff --git a/2.3-1/src/c/statisticsFunctions/sum/u8suma.c b/2.3-1/src/c/statisticsFunctions/sum/u8suma.c index cb80b336..e5febef1 100644 --- a/2.3-1/src/c/statisticsFunctions/sum/u8suma.c +++ b/2.3-1/src/c/statisticsFunctions/sum/u8suma.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "sum.h" diff --git a/2.3-1/src/c/string/disp/i16dispa.c b/2.3-1/src/c/string/disp/i16dispa.c index a30bd896..424d066d 100644 --- a/2.3-1/src/c/string/disp/i16dispa.c +++ b/2.3-1/src/c/string/disp/i16dispa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "disp.h" diff --git a/2.3-1/src/c/string/disp/i16disps.c b/2.3-1/src/c/string/disp/i16disps.c index 92adab9c..70edda77 100644 --- a/2.3-1/src/c/string/disp/i16disps.c +++ b/2.3-1/src/c/string/disp/i16disps.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "disp.h" diff --git a/2.3-1/src/c/string/disp/i8dispa.c b/2.3-1/src/c/string/disp/i8dispa.c index 467a4356..9acd9674 100644 --- a/2.3-1/src/c/string/disp/i8dispa.c +++ b/2.3-1/src/c/string/disp/i8dispa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "disp.h" diff --git a/2.3-1/src/c/string/disp/i8disps.c b/2.3-1/src/c/string/disp/i8disps.c index 68b56954..07cc6c4f 100644 --- a/2.3-1/src/c/string/disp/i8disps.c +++ b/2.3-1/src/c/string/disp/i8disps.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "disp.h" diff --git a/2.3-1/src/c/string/disp/u16dispa.c b/2.3-1/src/c/string/disp/u16dispa.c index 92df9ddc..ad3685e2 100644 --- a/2.3-1/src/c/string/disp/u16dispa.c +++ b/2.3-1/src/c/string/disp/u16dispa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "disp.h" diff --git a/2.3-1/src/c/string/disp/u16disps.c b/2.3-1/src/c/string/disp/u16disps.c index d27ffb3d..383dcfc0 100644 --- a/2.3-1/src/c/string/disp/u16disps.c +++ b/2.3-1/src/c/string/disp/u16disps.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "disp.h" diff --git a/2.3-1/src/c/string/disp/u8dispa.c b/2.3-1/src/c/string/disp/u8dispa.c index cca8e441..f242b5c5 100644 --- a/2.3-1/src/c/string/disp/u8dispa.c +++ b/2.3-1/src/c/string/disp/u8dispa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "disp.h" diff --git a/2.3-1/src/c/string/disp/u8disps.c b/2.3-1/src/c/string/disp/u8disps.c index 78b750a3..2d3e78fa 100644 --- a/2.3-1/src/c/string/disp/u8disps.c +++ b/2.3-1/src/c/string/disp/u8disps.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "disp.h" diff --git a/2.3-1/src/c/string/string/i16stringa.c b/2.3-1/src/c/string/string/i16stringa.c index 28855df6..f33f2cb5 100644 --- a/2.3-1/src/c/string/string/i16stringa.c +++ b/2.3-1/src/c/string/string/i16stringa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "str.h" #include "types.h" diff --git a/2.3-1/src/c/string/string/i16strings.c b/2.3-1/src/c/string/string/i16strings.c index 2f214308..8644733c 100644 --- a/2.3-1/src/c/string/string/i16strings.c +++ b/2.3-1/src/c/string/string/i16strings.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include <stdio.h> #include "str.h" diff --git a/2.3-1/src/c/string/string/i8stringa.c b/2.3-1/src/c/string/string/i8stringa.c index cf436f0a..37f4d8e8 100644 --- a/2.3-1/src/c/string/string/i8stringa.c +++ b/2.3-1/src/c/string/string/i8stringa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "str.h" #include "types.h" diff --git a/2.3-1/src/c/string/string/i8strings.c b/2.3-1/src/c/string/string/i8strings.c index 926c0f4d..3f3c9e8f 100644 --- a/2.3-1/src/c/string/string/i8strings.c +++ b/2.3-1/src/c/string/string/i8strings.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include <stdio.h> #include "str.h" diff --git a/2.3-1/src/c/string/string/u16stringa.c b/2.3-1/src/c/string/string/u16stringa.c index ee5d1b36..ef6a0a97 100644 --- a/2.3-1/src/c/string/string/u16stringa.c +++ b/2.3-1/src/c/string/string/u16stringa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "str.h" #include "types.h" diff --git a/2.3-1/src/c/string/string/u16strings.c b/2.3-1/src/c/string/string/u16strings.c index d2854c45..f09ed971 100644 --- a/2.3-1/src/c/string/string/u16strings.c +++ b/2.3-1/src/c/string/string/u16strings.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include <stdio.h> #include "str.h" diff --git a/2.3-1/src/c/string/string/u8stringa.c b/2.3-1/src/c/string/string/u8stringa.c index 4546823d..d605537c 100644 --- a/2.3-1/src/c/string/string/u8stringa.c +++ b/2.3-1/src/c/string/string/u8stringa.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include "str.h" #include "types.h" diff --git a/2.3-1/src/c/string/string/u8strings.c b/2.3-1/src/c/string/string/u8strings.c index 38bf670d..07d07f36 100644 --- a/2.3-1/src/c/string/string/u8strings.c +++ b/2.3-1/src/c/string/string/u8strings.c @@ -1,14 +1,15 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ +/* Copyright (C) 2016 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Author: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + #include <stdio.h> #include "str.h" diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/ads1115.h b/2.3-1/thirdparty/raspberrypi/includes/ads1115.h index 5c91735c..5c91735c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/ads1115.h +++ b/2.3-1/thirdparty/raspberrypi/includes/ads1115.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/drcSerial.h b/2.3-1/thirdparty/raspberrypi/includes/drcSerial.h index 29e988e1..29e988e1 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/drcSerial.h +++ b/2.3-1/thirdparty/raspberrypi/includes/drcSerial.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/max31855.h b/2.3-1/thirdparty/raspberrypi/includes/max31855.h index 385c4bd3..385c4bd3 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/max31855.h +++ b/2.3-1/thirdparty/raspberrypi/includes/max31855.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/max5322.h b/2.3-1/thirdparty/raspberrypi/includes/max5322.h index a217cf88..a217cf88 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/max5322.h +++ b/2.3-1/thirdparty/raspberrypi/includes/max5322.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23008.h b/2.3-1/thirdparty/raspberrypi/includes/mcp23008.h index e9299a8c..e9299a8c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23008.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp23008.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23016.h b/2.3-1/thirdparty/raspberrypi/includes/mcp23016.h index f9b5cc54..f9b5cc54 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23016.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp23016.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23016reg.h b/2.3-1/thirdparty/raspberrypi/includes/mcp23016reg.h index 9aea92d5..9aea92d5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23016reg.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp23016reg.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23017.h b/2.3-1/thirdparty/raspberrypi/includes/mcp23017.h index 79b4d7b3..79b4d7b3 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23017.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp23017.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23s08.h b/2.3-1/thirdparty/raspberrypi/includes/mcp23s08.h index ebf93d19..ebf93d19 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23s08.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp23s08.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23s17.h b/2.3-1/thirdparty/raspberrypi/includes/mcp23s17.h index 3b2a8088..3b2a8088 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23s17.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp23s17.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23x08.h b/2.3-1/thirdparty/raspberrypi/includes/mcp23x08.h index c4e6b272..c4e6b272 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23x08.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp23x08.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23x0817.h b/2.3-1/thirdparty/raspberrypi/includes/mcp23x0817.h index 58bc0382..58bc0382 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23x0817.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp23x0817.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3002.h b/2.3-1/thirdparty/raspberrypi/includes/mcp3002.h index 0cd727f3..0cd727f3 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3002.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp3002.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3004.h b/2.3-1/thirdparty/raspberrypi/includes/mcp3004.h index a07c0bf0..a07c0bf0 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3004.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp3004.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3422.h b/2.3-1/thirdparty/raspberrypi/includes/mcp3422.h index 72647d45..72647d45 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3422.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp3422.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp4802.h b/2.3-1/thirdparty/raspberrypi/includes/mcp4802.h index effa0246..effa0246 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/mcp4802.h +++ b/2.3-1/thirdparty/raspberrypi/includes/mcp4802.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/calib3d.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/calib3d.hpp index 7356c151..7356c151 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/calib3d.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/calib3d.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/calib3d/calib3d.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/calib3d/calib3d.hpp index 5e9cde8e..5e9cde8e 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/calib3d/calib3d.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/calib3d/calib3d.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/contrib.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/contrib/contrib.hpp index d5879424..d5879424 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/contrib.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/contrib/contrib.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/detection_based_tracker.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/contrib/detection_based_tracker.hpp index 56aa1ccb..56aa1ccb 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/detection_based_tracker.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/contrib/detection_based_tracker.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/hybridtracker.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/contrib/hybridtracker.hpp index 3a1f722d..3a1f722d 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/hybridtracker.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/contrib/hybridtracker.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/openfabmap.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/contrib/openfabmap.hpp index 6b2834ed..6b2834ed 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/openfabmap.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/contrib/openfabmap.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/retina.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/contrib/retina.hpp index f261bb45..f261bb45 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/retina.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/contrib/retina.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core.hpp index 12773f8c..12773f8c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/affine.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/affine.hpp index 1b560c8e..1b560c8e 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/affine.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/affine.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/core.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/core.hpp index 591d50ad..591d50ad 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/core.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/core.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/core_c.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/core_c.h index b9f1090a..b9f1090a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/core_c.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/core_c.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/cuda_devptrs.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/cuda_devptrs.hpp index 15340455..15340455 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/cuda_devptrs.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/cuda_devptrs.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/devmem2d.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/devmem2d.hpp index 18dfcd8a..18dfcd8a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/devmem2d.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/devmem2d.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/eigen.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/eigen.hpp index a7b237f9..a7b237f9 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/eigen.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/eigen.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/gpumat.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/gpumat.hpp index 68647d9b..68647d9b 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/gpumat.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/gpumat.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/internal.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/internal.hpp index c2c89613..c2c89613 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/internal.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/internal.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/mat.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/mat.hpp index 631c6980..631c6980 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/mat.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/mat.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/opengl_interop.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/opengl_interop.hpp index 7ecaa8e2..7ecaa8e2 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/opengl_interop.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/opengl_interop.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/opengl_interop_deprecated.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/opengl_interop_deprecated.hpp index 04e3fc0c..04e3fc0c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/opengl_interop_deprecated.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/opengl_interop_deprecated.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/operations.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/operations.hpp index 0ae51c69..0ae51c69 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/operations.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/operations.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/types_c.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/types_c.h index c21cd2c7..c21cd2c7 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/types_c.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/types_c.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/version.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/version.hpp index 2dbb3c34..2dbb3c34 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/version.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/version.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/wimage.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/wimage.hpp index c7afa8c5..c7afa8c5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/wimage.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/core/wimage.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/features2d.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/features2d.hpp index 3ab3273f..3ab3273f 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/features2d.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/features2d.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/features2d/features2d.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/features2d/features2d.hpp index e4e796fb..e4e796fb 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/features2d/features2d.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/features2d/features2d.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann.hpp index ea8fcd73..ea8fcd73 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/all_indices.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/all_indices.h index ff53fd84..ff53fd84 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/all_indices.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/all_indices.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/allocator.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/allocator.h index 26091d0c..26091d0c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/allocator.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/allocator.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/any.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/any.h index 7e3fd797..7e3fd797 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/any.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/any.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/autotuned_index.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/autotuned_index.h index 454641e6..454641e6 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/autotuned_index.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/autotuned_index.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/composite_index.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/composite_index.h index 02b7bc1f..02b7bc1f 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/composite_index.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/composite_index.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/config.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/config.h index 56832fd3..56832fd3 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/config.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/config.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/defines.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/defines.h index 13833b3c..13833b3c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/defines.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/defines.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dist.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/dist.h index 5ba3d345..5ba3d345 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dist.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/dist.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dummy.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/dummy.h index 33909818..33909818 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dummy.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/dummy.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dynamic_bitset.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/dynamic_bitset.h index d795b5d6..d795b5d6 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dynamic_bitset.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/dynamic_bitset.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/flann.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/flann.hpp index d053488e..d053488e 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/flann.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/flann.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/flann_base.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/flann_base.hpp index bb5b1200..bb5b1200 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/flann_base.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/flann_base.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/general.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/general.h index 87e7e2f2..87e7e2f2 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/general.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/general.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/ground_truth.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/ground_truth.h index fd8f3ae7..fd8f3ae7 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/ground_truth.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/ground_truth.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/hdf5.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/hdf5.h index ef3e9997..ef3e9997 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/hdf5.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/hdf5.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/heap.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/heap.h index 92a6ea61..92a6ea61 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/heap.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/heap.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/hierarchical_clustering_index.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/hierarchical_clustering_index.h index 59423ae0..59423ae0 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/hierarchical_clustering_index.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/hierarchical_clustering_index.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/index_testing.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/index_testing.h index d7640040..d7640040 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/index_testing.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/index_testing.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kdtree_index.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/kdtree_index.h index 1b8af4a5..1b8af4a5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kdtree_index.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/kdtree_index.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kdtree_single_index.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/kdtree_single_index.h index 252fc4c5..252fc4c5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kdtree_single_index.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/kdtree_single_index.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kmeans_index.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/kmeans_index.h index e119ceb2..e119ceb2 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kmeans_index.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/kmeans_index.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/linear_index.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/linear_index.h index 0ea084a5..0ea084a5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/linear_index.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/linear_index.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/logger.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/logger.h index 24f3fb69..24f3fb69 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/logger.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/logger.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/lsh_index.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/lsh_index.h index 2b89337d..2b89337d 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/lsh_index.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/lsh_index.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/lsh_table.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/lsh_table.h index cef01b2e..cef01b2e 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/lsh_table.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/lsh_table.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/matrix.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/matrix.h index 51b6c635..51b6c635 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/matrix.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/matrix.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/miniflann.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/miniflann.hpp index 121f8d05..121f8d05 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/miniflann.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/miniflann.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/nn_index.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/nn_index.h index 4a874f58..4a874f58 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/nn_index.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/nn_index.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/object_factory.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/object_factory.h index 7f971c5a..7f971c5a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/object_factory.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/object_factory.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/params.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/params.h index b40c39e3..b40c39e3 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/params.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/params.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/random.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/random.h index a3cf5ec5..a3cf5ec5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/random.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/random.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/result_set.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/result_set.h index 97500195..97500195 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/result_set.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/result_set.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/sampling.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/sampling.h index 396f177a..396f177a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/sampling.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/sampling.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/saving.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/saving.h index 7e3bea56..7e3bea56 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/saving.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/saving.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/simplex_downhill.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/simplex_downhill.h index 145901ab..145901ab 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/simplex_downhill.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/simplex_downhill.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/timer.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/timer.h index 107371ec..107371ec 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/timer.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/flann/timer.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/block.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/block.hpp index 6cc00aed..6cc00aed 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/block.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/block.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/border_interpolate.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/border_interpolate.hpp index 693ba216..693ba216 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/border_interpolate.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/border_interpolate.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/color.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/color.hpp index 5af64bf6..5af64bf6 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/color.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/color.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/common.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/common.hpp index 26a349ff..26a349ff 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/common.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/common.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/datamov_utils.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/datamov_utils.hpp index a3f62fba..a3f62fba 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/datamov_utils.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/datamov_utils.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/color_detail.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/color_detail.hpp index c4ec64b5..c4ec64b5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/color_detail.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/color_detail.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/reduce.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/reduce.hpp index 091a160e..091a160e 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/reduce.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/reduce.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/reduce_key_val.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/reduce_key_val.hpp index a84e0c2f..a84e0c2f 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/reduce_key_val.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/reduce_key_val.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/transform_detail.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/transform_detail.hpp index 10da5938..10da5938 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/transform_detail.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/transform_detail.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/type_traits_detail.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/type_traits_detail.hpp index 97ff00d8..97ff00d8 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/type_traits_detail.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/type_traits_detail.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/vec_distance_detail.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/vec_distance_detail.hpp index 78ab5565..78ab5565 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/vec_distance_detail.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/vec_distance_detail.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/dynamic_smem.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/dynamic_smem.hpp index cf431d95..cf431d95 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/dynamic_smem.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/dynamic_smem.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/emulation.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/emulation.hpp index bf47bc5f..bf47bc5f 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/emulation.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/emulation.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/filters.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/filters.hpp index d193969a..d193969a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/filters.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/filters.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/funcattrib.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/funcattrib.hpp index 2ed79802..2ed79802 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/funcattrib.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/funcattrib.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/functional.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/functional.hpp index db264735..db264735 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/functional.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/functional.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/limits.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/limits.hpp index 59597800..59597800 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/limits.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/limits.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/reduce.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/reduce.hpp index 2161b064..2161b064 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/reduce.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/reduce.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/saturate_cast.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/saturate_cast.hpp index 7a2799fa..7a2799fa 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/saturate_cast.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/saturate_cast.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/scan.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/scan.hpp index 3d8da16f..3d8da16f 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/scan.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/scan.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/simd_functions.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/simd_functions.hpp index b0377e53..b0377e53 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/simd_functions.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/simd_functions.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/static_check.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/static_check.hpp index e77691b7..e77691b7 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/static_check.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/static_check.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/transform.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/transform.hpp index 636caac6..636caac6 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/transform.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/transform.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/type_traits.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/type_traits.hpp index 1b36acca..1b36acca 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/type_traits.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/type_traits.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/utility.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/utility.hpp index 85e81acf..85e81acf 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/utility.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/utility.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_distance.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_distance.hpp index d5b4bb20..d5b4bb20 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_distance.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_distance.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_math.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_math.hpp index a6cb43a2..a6cb43a2 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_math.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_math.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_traits.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_traits.hpp index 8d179c83..8d179c83 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_traits.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_traits.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp.hpp index 0f1dc794..0f1dc794 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp_reduce.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp_reduce.hpp index d4e64c46..d4e64c46 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp_reduce.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp_reduce.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp_shuffle.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp_shuffle.hpp index 8b4479a7..8b4479a7 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp_shuffle.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp_shuffle.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/devmem2d.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/devmem2d.hpp index 18dfcd8a..18dfcd8a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/devmem2d.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/devmem2d.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/gpu.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/gpu.hpp index de169826..de169826 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/gpu.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/gpu.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/gpumat.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/gpumat.hpp index 840398b5..840398b5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/gpumat.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/gpumat.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/stream_accessor.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/stream_accessor.hpp index bcd58ba3..bcd58ba3 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/stream_accessor.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/gpu/stream_accessor.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/highgui.hpp index c76a020a..c76a020a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/highgui.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/cap_ios.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/highgui/cap_ios.h index 4c931d40..4c931d40 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/cap_ios.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/highgui/cap_ios.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/highgui.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/highgui/highgui.hpp index f6f22930..f6f22930 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/highgui.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/highgui/highgui.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/highgui_c.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/highgui/highgui_c.h index 85a59bb0..85a59bb0 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/highgui_c.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/highgui/highgui_c.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/ios.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/highgui/ios.h index a7f0395d..a7f0395d 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/ios.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/highgui/ios.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/imgproc.hpp index 112f7232..112f7232 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/imgproc.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/imgproc.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/imgproc/imgproc.hpp index aa6a5f6c..aa6a5f6c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/imgproc.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/imgproc/imgproc.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/imgproc_c.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/imgproc/imgproc_c.h index 46d9f013..46d9f013 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/imgproc_c.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/imgproc/imgproc_c.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/types_c.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/imgproc/types_c.h index 4aba0a87..4aba0a87 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/types_c.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/imgproc/types_c.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/blobtrack.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/legacy/blobtrack.hpp index 496b8be2..496b8be2 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/blobtrack.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/legacy/blobtrack.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/compat.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/legacy/compat.hpp index 5b5495ed..5b5495ed 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/compat.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/legacy/compat.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/legacy.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/legacy/legacy.hpp index 96da25c9..96da25c9 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/legacy.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/legacy/legacy.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/streams.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/legacy/streams.hpp index e164bf4a..e164bf4a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/streams.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/legacy/streams.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ml.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ml.hpp index dc62dcb0..dc62dcb0 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ml.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ml.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ml/ml.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ml/ml.hpp index d86ecde4..d86ecde4 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ml/ml.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ml/ml.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/features2d.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/nonfree/features2d.hpp index f23bec8b..f23bec8b 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/features2d.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/nonfree/features2d.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/gpu.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/nonfree/gpu.hpp index 722ef26a..722ef26a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/gpu.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/nonfree/gpu.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/nonfree.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/nonfree/nonfree.hpp index c64c566d..c64c566d 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/nonfree.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/nonfree/nonfree.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/ocl.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/nonfree/ocl.hpp index ba84d244..ba84d244 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/ocl.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/nonfree/ocl.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/objdetect.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/objdetect.hpp index 71f201c9..71f201c9 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/objdetect.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/objdetect.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/objdetect/objdetect.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/objdetect/objdetect.hpp index d5d6f0b2..d5d6f0b2 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/objdetect/objdetect.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/objdetect/objdetect.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ocl/matrix_operations.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ocl/matrix_operations.hpp index d6f3bb4c..d6f3bb4c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ocl/matrix_operations.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ocl/matrix_operations.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ocl/ocl.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ocl/ocl.hpp index e8eb3e85..e8eb3e85 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ocl/ocl.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ocl/ocl.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/opencv.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/opencv.hpp index f76da92f..f76da92f 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/opencv.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/opencv.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/opencv_modules.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/opencv_modules.hpp index 4425eec5..4425eec5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/opencv_modules.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/opencv_modules.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/photo.hpp index 521a1ade..521a1ade 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/photo.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo/photo.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/photo/photo.hpp index 66973772..66973772 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo/photo.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/photo/photo.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo/photo_c.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/photo/photo_c.h index 4ca05f25..4ca05f25 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo/photo_c.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/photo/photo_c.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching.hpp index ed65bb39..ed65bb39 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/autocalib.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/autocalib.hpp index feb53494..feb53494 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/autocalib.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/autocalib.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/blenders.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/blenders.hpp index bd93a717..bd93a717 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/blenders.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/blenders.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/camera.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/camera.hpp index a74abcba..a74abcba 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/camera.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/camera.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/exposure_compensate.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/exposure_compensate.hpp index 49676fe9..49676fe9 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/exposure_compensate.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/exposure_compensate.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/matchers.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/matchers.hpp index f319df12..f319df12 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/matchers.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/matchers.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/motion_estimators.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/motion_estimators.hpp index 9ae11021..9ae11021 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/motion_estimators.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/motion_estimators.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/seam_finders.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/seam_finders.hpp index 5b1d5d98..5b1d5d98 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/seam_finders.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/seam_finders.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/util.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/util.hpp index a8ba8161..a8ba8161 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/util.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/util.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/util_inl.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/util_inl.hpp index ab5d94b4..ab5d94b4 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/util_inl.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/util_inl.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/warpers.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/warpers.hpp index 60d5e541..60d5e541 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/warpers.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/warpers.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/warpers_inl.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/warpers_inl.hpp index b1121232..b1121232 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/warpers_inl.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/detail/warpers_inl.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/stitcher.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/stitcher.hpp index e274deb1..e274deb1 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/stitcher.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/stitcher.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/warpers.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/warpers.hpp index 11e012ff..11e012ff 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/warpers.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/stitching/warpers.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/superres.hpp index 8c344ca4..8c344ca4 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/superres.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres/optical_flow.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/superres/optical_flow.hpp index d51ce793..d51ce793 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres/optical_flow.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/superres/optical_flow.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres/superres.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/superres/superres.hpp index 8daeb5ba..8daeb5ba 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres/superres.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/superres/superres.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts.hpp index e96b101e..e96b101e 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/gpu_perf.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts/gpu_perf.hpp index 87f1737c..87f1737c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/gpu_perf.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts/gpu_perf.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/gpu_test.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts/gpu_test.hpp index 01737bc9..01737bc9 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/gpu_test.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts/gpu_test.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts/ts.hpp index d3c17657..d3c17657 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts/ts.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts_gtest.h b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts/ts_gtest.h index 75453d20..75453d20 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts_gtest.h +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts/ts_gtest.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts_perf.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts/ts_perf.hpp index 18309061..18309061 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts_perf.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/ts/ts_perf.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/video.hpp index be11ce47..be11ce47 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/video.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/background_segm.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/video/background_segm.hpp index d2d068c6..d2d068c6 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/background_segm.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/video/background_segm.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/tracking.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/video/tracking.hpp index f09be806..f09be806 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/tracking.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/video/tracking.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/video.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/video/video.hpp index 1dd96f54..1dd96f54 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/video.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/video/video.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab.hpp index 4334d5c5..4334d5c5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/deblurring.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/deblurring.hpp index a61f9ce6..a61f9ce6 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/deblurring.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/deblurring.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/fast_marching.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/fast_marching.hpp index 23c5df3a..23c5df3a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/fast_marching.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/fast_marching.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/fast_marching_inl.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/fast_marching_inl.hpp index dc860c2c..dc860c2c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/fast_marching_inl.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/fast_marching_inl.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/frame_source.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/frame_source.hpp index c22c0a4c..c22c0a4c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/frame_source.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/frame_source.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/global_motion.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/global_motion.hpp index f5f34b92..f5f34b92 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/global_motion.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/global_motion.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/inpainting.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/inpainting.hpp index 8df60f7e..8df60f7e 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/inpainting.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/inpainting.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/log.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/log.hpp index ce6fadf8..ce6fadf8 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/log.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/log.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/motion_stabilizing.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/motion_stabilizing.hpp index de05ad25..de05ad25 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/motion_stabilizing.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/motion_stabilizing.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/optical_flow.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/optical_flow.hpp index 2c1742fc..2c1742fc 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/optical_flow.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/optical_flow.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/stabilizer.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/stabilizer.hpp index d1d53887..d1d53887 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/stabilizer.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/stabilizer.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/videostab.hpp b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/videostab.hpp index 3ea34a89..3ea34a89 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/videostab.hpp +++ b/2.3-1/thirdparty/raspberrypi/includes/opencv2/videostab/videostab.hpp diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/pcf8574.h b/2.3-1/thirdparty/raspberrypi/includes/pcf8574.h index 8e2d8181..8e2d8181 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/pcf8574.h +++ b/2.3-1/thirdparty/raspberrypi/includes/pcf8574.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/pcf8591.h b/2.3-1/thirdparty/raspberrypi/includes/pcf8591.h index 6b44ccf9..6b44ccf9 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/pcf8591.h +++ b/2.3-1/thirdparty/raspberrypi/includes/pcf8591.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/sn3218.h b/2.3-1/thirdparty/raspberrypi/includes/sn3218.h index 580d5f96..580d5f96 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/sn3218.h +++ b/2.3-1/thirdparty/raspberrypi/includes/sn3218.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/softPwm.h b/2.3-1/thirdparty/raspberrypi/includes/softPwm.h index 0351da5d..0351da5d 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/softPwm.h +++ b/2.3-1/thirdparty/raspberrypi/includes/softPwm.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/softServo.h b/2.3-1/thirdparty/raspberrypi/includes/softServo.h index 794cf552..794cf552 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/softServo.h +++ b/2.3-1/thirdparty/raspberrypi/includes/softServo.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/softTone.h b/2.3-1/thirdparty/raspberrypi/includes/softTone.h index a93c5af3..a93c5af3 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/softTone.h +++ b/2.3-1/thirdparty/raspberrypi/includes/softTone.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/sr595.h b/2.3-1/thirdparty/raspberrypi/includes/sr595.h index 4a26dc7c..4a26dc7c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/sr595.h +++ b/2.3-1/thirdparty/raspberrypi/includes/sr595.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPi.h b/2.3-1/thirdparty/raspberrypi/includes/wiringPi.h index a5eea873..a5eea873 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPi.h +++ b/2.3-1/thirdparty/raspberrypi/includes/wiringPi.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPiI2C.h b/2.3-1/thirdparty/raspberrypi/includes/wiringPiI2C.h index 6db8c688..6db8c688 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPiI2C.h +++ b/2.3-1/thirdparty/raspberrypi/includes/wiringPiI2C.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPiSPI.h b/2.3-1/thirdparty/raspberrypi/includes/wiringPiSPI.h index 39803219..39803219 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPiSPI.h +++ b/2.3-1/thirdparty/raspberrypi/includes/wiringPiSPI.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wiringSerial.h b/2.3-1/thirdparty/raspberrypi/includes/wiringSerial.h index 430dc731..430dc731 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wiringSerial.h +++ b/2.3-1/thirdparty/raspberrypi/includes/wiringSerial.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wiringShift.h b/2.3-1/thirdparty/raspberrypi/includes/wiringShift.h index 419ade41..419ade41 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wiringShift.h +++ b/2.3-1/thirdparty/raspberrypi/includes/wiringShift.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wpiExtensions.h b/2.3-1/thirdparty/raspberrypi/includes/wpiExtensions.h index fcaec96e..fcaec96e 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/wpiExtensions.h +++ b/2.3-1/thirdparty/raspberrypi/includes/wpiExtensions.h diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libIlmImf.a b/2.3-1/thirdparty/raspberrypi/lib/libIlmImf.a Binary files differindex 0d9631d2..0d9631d2 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libIlmImf.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libIlmImf.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libcblas.a b/2.3-1/thirdparty/raspberrypi/lib/libcblas.a Binary files differindex 7a460be9..7a460be9 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libcblas.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libcblas.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libgfortran.a b/2.3-1/thirdparty/raspberrypi/lib/libgfortran.a Binary files differindex 7aacee8f..7aacee8f 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libgfortran.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libgfortran.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libgsl.a b/2.3-1/thirdparty/raspberrypi/lib/libgsl.a Binary files differindex 1eb5d60d..1eb5d60d 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libgsl.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libgsl.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libjasper.a b/2.3-1/thirdparty/raspberrypi/lib/libjasper.a Binary files differindex 662e414c..662e414c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libjasper.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libjasper.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libjpeg.a b/2.3-1/thirdparty/raspberrypi/lib/libjpeg.a Binary files differindex e30c70c4..e30c70c4 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libjpeg.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libjpeg.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/liblapack.a b/2.3-1/thirdparty/raspberrypi/lib/liblapack.a Binary files differindex 726f2b99..726f2b99 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/liblapack.a +++ b/2.3-1/thirdparty/raspberrypi/lib/liblapack.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_calib3d.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_calib3d.a Binary files differindex 5d69787c..5d69787c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_calib3d.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_calib3d.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_contrib.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_contrib.a Binary files differindex c2b4527e..c2b4527e 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_contrib.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_contrib.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_core.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_core.a Binary files differindex 1a7056fc..1a7056fc 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_core.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_core.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_features2d.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_features2d.a Binary files differindex 3bd21f25..3bd21f25 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_features2d.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_features2d.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_flann.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_flann.a Binary files differindex b5648fc6..b5648fc6 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_flann.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_flann.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_gpu.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_gpu.a Binary files differindex a3b093ac..a3b093ac 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_gpu.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_gpu.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_highgui.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_highgui.a Binary files differindex 9b22dabe..9b22dabe 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_highgui.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_highgui.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_imgproc.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_imgproc.a Binary files differindex 3ae1ca04..3ae1ca04 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_imgproc.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_imgproc.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_legacy.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_legacy.a Binary files differindex 2d906d1c..2d906d1c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_legacy.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_legacy.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ml.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_ml.a Binary files differindex 5f6c164a..5f6c164a 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ml.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_ml.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_nonfree.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_nonfree.a Binary files differindex 4f49c8d1..4f49c8d1 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_nonfree.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_nonfree.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_objdetect.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_objdetect.a Binary files differindex 6b3ddad3..6b3ddad3 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_objdetect.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_objdetect.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ocl.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_ocl.a Binary files differindex f5a4b42b..f5a4b42b 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ocl.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_ocl.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_photo.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_photo.a Binary files differindex 998a80a7..998a80a7 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_photo.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_photo.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_stitching.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_stitching.a Binary files differindex aa0b1d39..aa0b1d39 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_stitching.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_stitching.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_superres.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_superres.a Binary files differindex d33df018..d33df018 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_superres.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_superres.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ts.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_ts.a Binary files differindex f7016020..f7016020 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ts.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_ts.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_video.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_video.a Binary files differindex c4a07bf0..c4a07bf0 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_video.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_video.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_videostab.a b/2.3-1/thirdparty/raspberrypi/lib/libopencv_videostab.a Binary files differindex e2c302d5..e2c302d5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/opencv/libopencv_videostab.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libopencv_videostab.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libpng.a b/2.3-1/thirdparty/raspberrypi/lib/libpng.a Binary files differindex 937cc22c..937cc22c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libpng.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libpng.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/librefblas.a b/2.3-1/thirdparty/raspberrypi/lib/librefblas.a Binary files differindex 300a0db5..300a0db5 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/librefblas.a +++ b/2.3-1/thirdparty/raspberrypi/lib/librefblas.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libtiff.a b/2.3-1/thirdparty/raspberrypi/lib/libtiff.a Binary files differindex 917d747d..917d747d 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libtiff.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libtiff.a diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/libwiringPi.so b/2.3-1/thirdparty/raspberrypi/lib/libwiringPi.so Binary files differindex da4a81e1..da4a81e1 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/wiringPi/libwiringPi.so +++ b/2.3-1/thirdparty/raspberrypi/lib/libwiringPi.so diff --git a/2.3-1/src/c/hardware/rasberrypi/libraries/libzlib.a b/2.3-1/thirdparty/raspberrypi/lib/libzlib.a Binary files differindex 5a64389d..5a64389d 100644 --- a/2.3-1/src/c/hardware/rasberrypi/libraries/libzlib.a +++ b/2.3-1/thirdparty/raspberrypi/lib/libzlib.a |