diff options
752 files changed, 5503 insertions, 4193 deletions
diff --git a/macros/FunctionAnnotation/FA_SCHUR_SZ.bin b/macros/FunctionAnnotation/FA_SCHUR_SZ.bin Binary files differindex d16f029..292a619 100644 --- a/macros/FunctionAnnotation/FA_SCHUR_SZ.bin +++ b/macros/FunctionAnnotation/FA_SCHUR_SZ.bin diff --git a/macros/FunctionAnnotation/FA_SCHUR_SZ.sci b/macros/FunctionAnnotation/FA_SCHUR_SZ.sci index 6ae2030..7b426e1 100644 --- a/macros/FunctionAnnotation/FA_SCHUR_SZ.sci +++ b/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/macros/FunctionAnnotation/FA_SCHUR_TP.bin b/macros/FunctionAnnotation/FA_SCHUR_TP.bin Binary files differindex 8b31a0c..4b0b438 100644 --- a/macros/FunctionAnnotation/FA_SCHUR_TP.bin +++ b/macros/FunctionAnnotation/FA_SCHUR_TP.bin diff --git a/macros/FunctionAnnotation/FA_SCHUR_TP.sci b/macros/FunctionAnnotation/FA_SCHUR_TP.sci index a8b68b1..828ea1e 100644 --- a/macros/FunctionAnnotation/FA_SCHUR_TP.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.bin b/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.bin Binary files differindex 68d6a37..a3b34af 100644 --- a/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.bin +++ b/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.bin diff --git a/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.sci b/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.sci index df129f9..3aea839 100644 --- a/macros/FunctionAnnotation/FA_SZ_COLUMN_DIAG.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.bin b/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.bin Binary files differindex e39a0be..7674823 100644 --- a/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.bin +++ b/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.bin diff --git a/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.sci b/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.sci index 45d74c3..8a313fe 100644 --- a/macros/FunctionAnnotation/FA_SZ_COL_DIAG_IN_EX.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_DIFF.bin b/macros/FunctionAnnotation/FA_SZ_DIFF.bin Binary files differindex 5f169e6..08d66c1 100644 --- a/macros/FunctionAnnotation/FA_SZ_DIFF.bin +++ b/macros/FunctionAnnotation/FA_SZ_DIFF.bin diff --git a/macros/FunctionAnnotation/FA_SZ_DIFF.sci b/macros/FunctionAnnotation/FA_SZ_DIFF.sci index df18310..5639ce7 100644 --- a/macros/FunctionAnnotation/FA_SZ_DIFF.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.bin b/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.bin Binary files differindex 0a5589b..60cb9d4 100644 --- a/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.bin +++ b/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.bin diff --git a/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.sci b/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.sci index 986b529..69a816c 100644 --- a/macros/FunctionAnnotation/FA_SZ_LINSPACE_ROW.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_LQE.bin b/macros/FunctionAnnotation/FA_SZ_LQE.bin Binary files differindex 2fb9772..8abfa39 100644 --- a/macros/FunctionAnnotation/FA_SZ_LQE.bin +++ b/macros/FunctionAnnotation/FA_SZ_LQE.bin diff --git a/macros/FunctionAnnotation/FA_SZ_LQE.sci b/macros/FunctionAnnotation/FA_SZ_LQE.sci index e7aecf1..6ddd198 100644 --- a/macros/FunctionAnnotation/FA_SZ_LQE.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_LQR.bin b/macros/FunctionAnnotation/FA_SZ_LQR.bin Binary files differindex 2de9d56..843fb2c 100644 --- a/macros/FunctionAnnotation/FA_SZ_LQR.bin +++ b/macros/FunctionAnnotation/FA_SZ_LQR.bin diff --git a/macros/FunctionAnnotation/FA_SZ_LQR.sci b/macros/FunctionAnnotation/FA_SZ_LQR.sci index 2f199d0..cf1884a 100644 --- a/macros/FunctionAnnotation/FA_SZ_LQR.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_OBSCNT.bin b/macros/FunctionAnnotation/FA_SZ_OBSCNT.bin Binary files differindex 70ce8df..b936e29 100644 --- a/macros/FunctionAnnotation/FA_SZ_OBSCNT.bin +++ b/macros/FunctionAnnotation/FA_SZ_OBSCNT.bin diff --git a/macros/FunctionAnnotation/FA_SZ_OBSCNT.sci b/macros/FunctionAnnotation/FA_SZ_OBSCNT.sci index 80c0f95..a7cb85b 100644 --- a/macros/FunctionAnnotation/FA_SZ_OBSCNT.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.bin b/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.bin Binary files differindex 747a31d..3ebb951 100644 --- a/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.bin +++ b/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.bin diff --git a/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.sci b/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.sci index 3dd4e60..35cf8ac 100644 --- a/macros/FunctionAnnotation/FA_SZ_PERMUTE_ROW.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.bin b/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.bin Binary files differindex edba674..28b7fa5 100644 --- a/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.bin +++ b/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.bin diff --git a/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.sci b/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.sci index ca1d262..11b245e 100644 --- a/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.bin b/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.bin Binary files differindex 2373b81..5679bce 100644 --- a/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.bin +++ b/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.bin diff --git a/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.sci b/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.sci index 5ab0c64..aaca286 100644 --- a/macros/FunctionAnnotation/FA_SZ_ROW_COLUMN_CAT.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.bin b/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.bin Binary files differindex 7fc7dcc..f5f1a23 100644 --- a/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.bin +++ b/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.bin diff --git a/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.sci b/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.sci index 687a89e..1417b42 100644 --- a/macros/FunctionAnnotation/FA_SZ_ROW_DIAG.sci +++ b/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/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.bin b/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.bin Binary files differindex 046b4b7..e5d8e65 100644 --- a/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.bin +++ b/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.bin diff --git a/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.sci b/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.sci index 1ec720a..1dddfb7 100644 --- a/macros/FunctionAnnotation/FA_SZ_ROW_DIAG_INS_EXT.sci +++ b/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/macros/FunctionAnnotation/FA_TP_CVIMAGE.bin b/macros/FunctionAnnotation/FA_TP_CVIMAGE.bin Binary files differindex 1d824fb..a732709 100644 --- a/macros/FunctionAnnotation/FA_TP_CVIMAGE.bin +++ b/macros/FunctionAnnotation/FA_TP_CVIMAGE.bin diff --git a/macros/FunctionAnnotation/FA_TP_CVIMAGE.sci b/macros/FunctionAnnotation/FA_TP_CVIMAGE.sci index 1c0d174..5e87ab8 100644 --- a/macros/FunctionAnnotation/FA_TP_CVIMAGE.sci +++ b/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/macros/FunctionAnnotation/FA_TP_INT16.bin b/macros/FunctionAnnotation/FA_TP_INT16.bin Binary files differindex e28e0c5..fba4305 100644 --- a/macros/FunctionAnnotation/FA_TP_INT16.bin +++ b/macros/FunctionAnnotation/FA_TP_INT16.bin diff --git a/macros/FunctionAnnotation/FA_TP_INT16.sci b/macros/FunctionAnnotation/FA_TP_INT16.sci index 67b8178..b7e25ca 100644 --- a/macros/FunctionAnnotation/FA_TP_INT16.sci +++ b/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/macros/FunctionAnnotation/FA_TP_INT8.bin b/macros/FunctionAnnotation/FA_TP_INT8.bin Binary files differindex 3f5055f..f67d748 100644 --- a/macros/FunctionAnnotation/FA_TP_INT8.bin +++ b/macros/FunctionAnnotation/FA_TP_INT8.bin diff --git a/macros/FunctionAnnotation/FA_TP_INT8.sci b/macros/FunctionAnnotation/FA_TP_INT8.sci index 49c752b..f1e2bf2 100644 --- a/macros/FunctionAnnotation/FA_TP_INT8.sci +++ b/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/macros/FunctionAnnotation/FA_TP_UINT16.bin b/macros/FunctionAnnotation/FA_TP_UINT16.bin Binary files differindex 687024f..dc455ca 100644 --- a/macros/FunctionAnnotation/FA_TP_UINT16.bin +++ b/macros/FunctionAnnotation/FA_TP_UINT16.bin diff --git a/macros/FunctionAnnotation/FA_TP_UINT16.sci b/macros/FunctionAnnotation/FA_TP_UINT16.sci index 5f1c98f..b77d775 100644 --- a/macros/FunctionAnnotation/FA_TP_UINT16.sci +++ b/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/macros/FunctionAnnotation/FA_TP_UINT8.bin b/macros/FunctionAnnotation/FA_TP_UINT8.bin Binary files differindex 02e7404..508db41 100644 --- a/macros/FunctionAnnotation/FA_TP_UINT8.bin +++ b/macros/FunctionAnnotation/FA_TP_UINT8.bin diff --git a/macros/FunctionAnnotation/FA_TP_UINT8.sci b/macros/FunctionAnnotation/FA_TP_UINT8.sci index 934f354..f31cde0 100644 --- a/macros/FunctionAnnotation/FA_TP_UINT8.sci +++ b/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/macros/Hardware/RasberryPi/GetRPISupportFunctions.bin b/macros/Hardware/RasberryPi/GetRPISupportFunctions.bin Binary files differindex 0c64927..a70999c 100644 --- a/macros/Hardware/RasberryPi/GetRPISupportFunctions.bin +++ b/macros/Hardware/RasberryPi/GetRPISupportFunctions.bin diff --git a/macros/Hardware/RasberryPi/GetRPISupportFunctions.sci b/macros/Hardware/RasberryPi/GetRPISupportFunctions.sci index a791f1e..3e6397b 100644 --- a/macros/Hardware/RasberryPi/GetRPISupportFunctions.sci +++ b/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/macros/Hardware/RasberryPi/IsRPISupportFunction.bin b/macros/Hardware/RasberryPi/IsRPISupportFunction.bin Binary files differindex 728e3d8..11533d3 100644 --- a/macros/Hardware/RasberryPi/IsRPISupportFunction.bin +++ b/macros/Hardware/RasberryPi/IsRPISupportFunction.bin diff --git a/macros/Hardware/RasberryPi/IsRPISupportFunction.sci b/macros/Hardware/RasberryPi/IsRPISupportFunction.sci index 647b0c8..c6a2c36 100644 --- a/macros/Hardware/RasberryPi/IsRPISupportFunction.sci +++ b/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/macros/Hardware/RasberryPi/RPI_DelayMicro.sci b/macros/Hardware/RasberryPi/RPI_DelayMicro.sci index 730755b..bbb0bb3 100644 --- a/macros/Hardware/RasberryPi/RPI_DelayMicro.sci +++ b/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/macros/Hardware/RasberryPi/RPI_DelayMilli.bin b/macros/Hardware/RasberryPi/RPI_DelayMilli.bin Binary files differindex bb8279e..b6eeb30 100644 --- a/macros/Hardware/RasberryPi/RPI_DelayMilli.bin +++ b/macros/Hardware/RasberryPi/RPI_DelayMilli.bin diff --git a/macros/Hardware/RasberryPi/RPI_DelayMilli.sci b/macros/Hardware/RasberryPi/RPI_DelayMilli.sci index c5080dd..13b7962 100644 --- a/macros/Hardware/RasberryPi/RPI_DelayMilli.sci +++ b/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/macros/Hardware/RasberryPi/RPI_DigitalIn.sci b/macros/Hardware/RasberryPi/RPI_DigitalIn.sci index 4df03f6..781c49c 100644 --- a/macros/Hardware/RasberryPi/RPI_DigitalIn.sci +++ b/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/macros/Hardware/RasberryPi/RPI_DigitalOut.bin b/macros/Hardware/RasberryPi/RPI_DigitalOut.bin Binary files differindex d6b6b7b..b7ad06e 100644 --- a/macros/Hardware/RasberryPi/RPI_DigitalOut.bin +++ b/macros/Hardware/RasberryPi/RPI_DigitalOut.bin diff --git a/macros/Hardware/RasberryPi/RPI_DigitalOut.sci b/macros/Hardware/RasberryPi/RPI_DigitalOut.sci index 4836f54..dde3c93 100644 --- a/macros/Hardware/RasberryPi/RPI_DigitalOut.sci +++ b/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/macros/Hardware/RasberryPi/RPI_DigitalSetup.bin b/macros/Hardware/RasberryPi/RPI_DigitalSetup.bin Binary files differindex 1f20deb..1ac5b58 100644 --- a/macros/Hardware/RasberryPi/RPI_DigitalSetup.bin +++ b/macros/Hardware/RasberryPi/RPI_DigitalSetup.bin diff --git a/macros/Hardware/RasberryPi/RPI_DigitalSetup.sci b/macros/Hardware/RasberryPi/RPI_DigitalSetup.sci index 460a417..01d6e07 100644 --- a/macros/Hardware/RasberryPi/RPI_DigitalSetup.sci +++ b/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/macros/Hardware/RasberryPi/RPI_GetMicros.sci b/macros/Hardware/RasberryPi/RPI_GetMicros.sci index 7f825ef..6c4db57 100644 --- a/macros/Hardware/RasberryPi/RPI_GetMicros.sci +++ b/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/macros/Hardware/RasberryPi/RPI_GetMillis.sci b/macros/Hardware/RasberryPi/RPI_GetMillis.sci index b83f5fe..c034a70 100644 --- a/macros/Hardware/RasberryPi/RPI_GetMillis.sci +++ b/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/macros/Hardware/RasberryPi/RPI_HardPWMSetClock.sci b/macros/Hardware/RasberryPi/RPI_HardPWMSetClock.sci index 3c05030..8448d36 100644 --- a/macros/Hardware/RasberryPi/RPI_HardPWMSetClock.sci +++ b/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/macros/Hardware/RasberryPi/RPI_HardPWMSetMode.sci b/macros/Hardware/RasberryPi/RPI_HardPWMSetMode.sci index 2ab697b..57b8260 100644 --- a/macros/Hardware/RasberryPi/RPI_HardPWMSetMode.sci +++ b/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/macros/Hardware/RasberryPi/RPI_HardPWMSetRange.sci b/macros/Hardware/RasberryPi/RPI_HardPWMSetRange.sci index cb7dd67..c2075e2 100644 --- a/macros/Hardware/RasberryPi/RPI_HardPWMSetRange.sci +++ b/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/macros/Hardware/RasberryPi/RPI_HardPWMWrite.sci b/macros/Hardware/RasberryPi/RPI_HardPWMWrite.sci index 9f9f797..dba5e67 100644 --- a/macros/Hardware/RasberryPi/RPI_HardPWMWrite.sci +++ b/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/macros/Hardware/RasberryPi/RPI_PinISR.bin b/macros/Hardware/RasberryPi/RPI_PinISR.bin Binary files differindex a6c0bd9..ddeff68 100644 --- a/macros/Hardware/RasberryPi/RPI_PinISR.bin +++ b/macros/Hardware/RasberryPi/RPI_PinISR.bin diff --git a/macros/Hardware/RasberryPi/RPI_PinISR.sci b/macros/Hardware/RasberryPi/RPI_PinISR.sci index 2de7d9e..c2354c1 100644 --- a/macros/Hardware/RasberryPi/RPI_PinISR.sci +++ b/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/macros/Hardware/RasberryPi/RPI_SerialClose.sci b/macros/Hardware/RasberryPi/RPI_SerialClose.sci index 0d393f3..f27dd43 100644 --- a/macros/Hardware/RasberryPi/RPI_SerialClose.sci +++ b/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/macros/Hardware/RasberryPi/RPI_SerialFlush.sci b/macros/Hardware/RasberryPi/RPI_SerialFlush.sci index ffef70b..9bab386 100644 --- a/macros/Hardware/RasberryPi/RPI_SerialFlush.sci +++ b/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/macros/Hardware/RasberryPi/RPI_SerialGetChar.sci b/macros/Hardware/RasberryPi/RPI_SerialGetChar.sci index 0271449..a26e5b9 100644 --- a/macros/Hardware/RasberryPi/RPI_SerialGetChar.sci +++ b/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/macros/Hardware/RasberryPi/RPI_SerialSendChar.sci b/macros/Hardware/RasberryPi/RPI_SerialSendChar.sci index 82051d6..769b21d 100644 --- a/macros/Hardware/RasberryPi/RPI_SerialSendChar.sci +++ b/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/macros/Hardware/RasberryPi/RPI_SerialSendData.sci b/macros/Hardware/RasberryPi/RPI_SerialSendData.sci index 6bfe80d..c05852b 100644 --- a/macros/Hardware/RasberryPi/RPI_SerialSendData.sci +++ b/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/macros/Hardware/RasberryPi/RPI_SerialSetup.sci b/macros/Hardware/RasberryPi/RPI_SerialSetup.sci index 25a70a3..0f26661 100644 --- a/macros/Hardware/RasberryPi/RPI_SerialSetup.sci +++ b/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/macros/Hardware/RasberryPi/u16RPISerialDataAvail.sci b/macros/Hardware/RasberryPi/u16RPISerialDataAvail.sci index 5a29156..6eb29a1 100644 --- a/macros/Hardware/RasberryPi/u16RPISerialDataAvail.sci +++ b/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/macros/ImageProcessing/core/CV_CreateImage.sci b/macros/ImageProcessing/core/CV_CreateImage.sci index 72dd9b8..0275815 100644 --- a/macros/ImageProcessing/core/CV_CreateImage.sci +++ b/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/macros/ImageProcessing/core/CV_GetImgSize.sci b/macros/ImageProcessing/core/CV_GetImgSize.sci index cd7ebda..02e018a 100644 --- a/macros/ImageProcessing/core/CV_GetImgSize.sci +++ b/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/macros/ImageProcessing/highgui/CV_LoadImage.sci b/macros/ImageProcessing/highgui/CV_LoadImage.sci index 93fc49b..01dda12 100644 --- a/macros/ImageProcessing/highgui/CV_LoadImage.sci +++ b/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/macros/ImageProcessing/highgui/CV_SaveImage.sci b/macros/ImageProcessing/highgui/CV_SaveImage.sci index 8d5ca16..708edff 100644 --- a/macros/ImageProcessing/highgui/CV_SaveImage.sci +++ b/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/macros/ImageProcessing/highgui/CV_ShowImage.sci b/macros/ImageProcessing/highgui/CV_ShowImage.sci index 0864c3f..4bfe591 100644 --- a/macros/ImageProcessing/highgui/CV_ShowImage.sci +++ b/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/macros/ImageProcessing/highgui/CV_WaitKey.sci b/macros/ImageProcessing/highgui/CV_WaitKey.sci index 514bc53..0facaaf 100644 --- a/macros/ImageProcessing/highgui/CV_WaitKey.sci +++ b/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/macros/ImageProcessing/imgproc/CV_AdaptiveThreshold.sci b/macros/ImageProcessing/imgproc/CV_AdaptiveThreshold.sci index 193e726..a922d79 100644 --- a/macros/ImageProcessing/imgproc/CV_AdaptiveThreshold.sci +++ b/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/macros/ImageProcessing/imgproc/CV_Blur.sci b/macros/ImageProcessing/imgproc/CV_Blur.sci index 0486bef..b81df49 100644 --- a/macros/ImageProcessing/imgproc/CV_Blur.sci +++ b/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/macros/ImageProcessing/imgproc/CV_Canny.sci b/macros/ImageProcessing/imgproc/CV_Canny.sci index dca5e03..b21028a 100644 --- a/macros/ImageProcessing/imgproc/CV_Canny.sci +++ b/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/macros/ImageProcessing/imgproc/CV_CornerHarris.sci b/macros/ImageProcessing/imgproc/CV_CornerHarris.sci index 1b7aabc..fb25612 100644 --- a/macros/ImageProcessing/imgproc/CV_CornerHarris.sci +++ b/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/macros/ImageProcessing/imgproc/CV_CvtColor.sci b/macros/ImageProcessing/imgproc/CV_CvtColor.sci index 220ad5f..766844b 100644 --- a/macros/ImageProcessing/imgproc/CV_CvtColor.sci +++ b/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/macros/ImageProcessing/imgproc/CV_Dilate.sci b/macros/ImageProcessing/imgproc/CV_Dilate.sci index d3e3dac..196cab8 100644 --- a/macros/ImageProcessing/imgproc/CV_Dilate.sci +++ b/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/macros/ImageProcessing/imgproc/CV_DistanceTransform.sci b/macros/ImageProcessing/imgproc/CV_DistanceTransform.sci index 8277dda..e877295 100644 --- a/macros/ImageProcessing/imgproc/CV_DistanceTransform.sci +++ b/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/macros/ImageProcessing/imgproc/CV_Erode.sci b/macros/ImageProcessing/imgproc/CV_Erode.sci index b2e4b26..d77e9e6 100644 --- a/macros/ImageProcessing/imgproc/CV_Erode.sci +++ b/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/macros/ImageProcessing/imgproc/CV_GaussianBlur.sci b/macros/ImageProcessing/imgproc/CV_GaussianBlur.sci index 0f3c003..0799c4d 100644 --- a/macros/ImageProcessing/imgproc/CV_GaussianBlur.sci +++ b/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/macros/ImageProcessing/imgproc/CV_MedianBlur.sci b/macros/ImageProcessing/imgproc/CV_MedianBlur.sci index 755ad45..d8f9a90 100644 --- a/macros/ImageProcessing/imgproc/CV_MedianBlur.sci +++ b/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/macros/ImageProcessing/imgproc/CV_Threshold.sci b/macros/ImageProcessing/imgproc/CV_Threshold.sci index 343fde5..823a576 100644 --- a/macros/ImageProcessing/imgproc/CV_Threshold.sci +++ b/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/macros/Scilab-Arduino/GenerateSetupFunction.bin b/macros/Scilab-Arduino/GenerateSetupFunction.bin Binary files differindex ea2bdec..0051630 100644 --- a/macros/Scilab-Arduino/GenerateSetupFunction.bin +++ b/macros/Scilab-Arduino/GenerateSetupFunction.bin diff --git a/macros/Scilab-Arduino/GenerateSetupFunction.sci b/macros/Scilab-Arduino/GenerateSetupFunction.sci index 33a515d..19cf4b8 100644 --- a/macros/Scilab-Arduino/GenerateSetupFunction.sci +++ b/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/macros/Scilab-Arduino/GetArduinoFunctions.sci b/macros/Scilab-Arduino/GetArduinoFunctions.sci index 1af351b..a112fe6 100644 --- a/macros/Scilab-Arduino/GetArduinoFunctions.sci +++ b/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/macros/Scilab-Arduino/GetArduinoSetupFunctions.sci b/macros/Scilab-Arduino/GetArduinoSetupFunctions.sci index c992057..d2cd0c7 100644 --- a/macros/Scilab-Arduino/GetArduinoSetupFunctions.sci +++ b/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/macros/Scilab-Arduino/InsertSetupInList.bin b/macros/Scilab-Arduino/InsertSetupInList.bin Binary files differindex 44e688c..29e3731 100644 --- a/macros/Scilab-Arduino/InsertSetupInList.bin +++ b/macros/Scilab-Arduino/InsertSetupInList.bin diff --git a/macros/Scilab-Arduino/InsertSetupInList.sci b/macros/Scilab-Arduino/InsertSetupInList.sci index b73910f..6584f29 100644 --- a/macros/Scilab-Arduino/InsertSetupInList.sci +++ b/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/macros/Scilab-Arduino/IsArduinoFunction.sci b/macros/Scilab-Arduino/IsArduinoFunction.sci index de1c770..d98f5cd 100644 --- a/macros/Scilab-Arduino/IsArduinoFunction.sci +++ b/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/macros/Scilab-Arduino/IsArduinoSetupFunction.sci b/macros/Scilab-Arduino/IsArduinoSetupFunction.sci index fae7f62..3e1c18f 100644 --- a/macros/Scilab-Arduino/IsArduinoSetupFunction.sci +++ b/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/macros/ToolInitialization/INIT_FillSCI2LibCDirs.bin b/macros/ToolInitialization/INIT_FillSCI2LibCDirs.bin Binary files differindex bcc63fc..cb61f23 100644 --- a/macros/ToolInitialization/INIT_FillSCI2LibCDirs.bin +++ b/macros/ToolInitialization/INIT_FillSCI2LibCDirs.bin diff --git a/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci b/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci index 4afbbe6..b9e7d8a 100644 --- a/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci +++ b/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/macros/findDeps/getAllHeaders.bin b/macros/findDeps/getAllHeaders.bin Binary files differindex 8ba5545..bb5e9c8 100644 --- a/macros/findDeps/getAllHeaders.bin +++ b/macros/findDeps/getAllHeaders.bin diff --git a/macros/findDeps/getAllHeaders.sci b/macros/findDeps/getAllHeaders.sci index 50ee358..175c8dc 100644 --- a/macros/findDeps/getAllHeaders.sci +++ b/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/macros/findDeps/getAllLibraries.bin b/macros/findDeps/getAllLibraries.bin Binary files differindex 718e2b1..ca1db0c 100644 --- a/macros/findDeps/getAllLibraries.bin +++ b/macros/findDeps/getAllLibraries.bin diff --git a/macros/findDeps/getAllLibraries.sci b/macros/findDeps/getAllLibraries.sci index 7ac9e5b..7969879 100644 --- a/macros/findDeps/getAllLibraries.sci +++ b/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/macros/findDeps/getArduinoFiles.bin b/macros/findDeps/getArduinoFiles.bin Binary files differindex 651b8f3..411018b 100644 --- a/macros/findDeps/getArduinoFiles.bin +++ b/macros/findDeps/getArduinoFiles.bin diff --git a/macros/findDeps/getArduinoFiles.sci b/macros/findDeps/getArduinoFiles.sci index 89033d0..aae8e50 100644 --- a/macros/findDeps/getArduinoFiles.sci +++ b/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/macros/runsci2c.bin b/macros/runsci2c.bin Binary files differindex 253cc78..fc8e8a7 100644 --- a/macros/runsci2c.bin +++ b/macros/runsci2c.bin diff --git a/macros/runsci2c.sci b/macros/runsci2c.sci index 9301421..0bc3e92 100644 --- a/macros/runsci2c.sci +++ b/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/src/c/auxiliaryFunctions/abs/i16absa.c b/src/c/auxiliaryFunctions/abs/i16absa.c index ad37cee..2abedc4 100644 --- a/src/c/auxiliaryFunctions/abs/i16absa.c +++ b/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/src/c/auxiliaryFunctions/abs/i16abss.c b/src/c/auxiliaryFunctions/abs/i16abss.c index 591ab8d..ab47833 100644 --- a/src/c/auxiliaryFunctions/abs/i16abss.c +++ b/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/src/c/auxiliaryFunctions/abs/i8absa.c b/src/c/auxiliaryFunctions/abs/i8absa.c index 2f015f2..1a646e4 100644 --- a/src/c/auxiliaryFunctions/abs/i8absa.c +++ b/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/src/c/auxiliaryFunctions/abs/i8abss.c b/src/c/auxiliaryFunctions/abs/i8abss.c index 7c3d707..2c3e0a0 100644 --- a/src/c/auxiliaryFunctions/abs/i8abss.c +++ b/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/src/c/auxiliaryFunctions/abs/u16absa.c b/src/c/auxiliaryFunctions/abs/u16absa.c index 5bc1d14..60c1ed9 100644 --- a/src/c/auxiliaryFunctions/abs/u16absa.c +++ b/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/src/c/auxiliaryFunctions/abs/u16abss.c b/src/c/auxiliaryFunctions/abs/u16abss.c index 056ca80..2e15d25 100644 --- a/src/c/auxiliaryFunctions/abs/u16abss.c +++ b/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/src/c/auxiliaryFunctions/abs/u8absa.c b/src/c/auxiliaryFunctions/abs/u8absa.c index cc649c8..2edd854 100644 --- a/src/c/auxiliaryFunctions/abs/u8absa.c +++ b/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/src/c/auxiliaryFunctions/abs/u8abss.c b/src/c/auxiliaryFunctions/abs/u8abss.c index 45ea9a5..220e9b8 100644 --- a/src/c/auxiliaryFunctions/abs/u8abss.c +++ b/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/src/c/auxiliaryFunctions/find/i16finda.c b/src/c/auxiliaryFunctions/find/i16finda.c index f7bde00..4dff102 100644 --- a/src/c/auxiliaryFunctions/find/i16finda.c +++ b/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/src/c/auxiliaryFunctions/find/i8finda.c b/src/c/auxiliaryFunctions/find/i8finda.c index 068c125..7e633dc 100644 --- a/src/c/auxiliaryFunctions/find/i8finda.c +++ b/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/src/c/auxiliaryFunctions/find/u16finda.c b/src/c/auxiliaryFunctions/find/u16finda.c index 3096d61..2ff5786 100644 --- a/src/c/auxiliaryFunctions/find/u16finda.c +++ b/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/src/c/auxiliaryFunctions/find/u8finda.c b/src/c/auxiliaryFunctions/find/u8finda.c index d571c7c..e2de81f 100644 --- a/src/c/auxiliaryFunctions/find/u8finda.c +++ b/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/src/c/auxiliaryFunctions/rand/i16randa.c b/src/c/auxiliaryFunctions/rand/i16randa.c index f3d8dd3..b6aa741 100644 --- a/src/c/auxiliaryFunctions/rand/i16randa.c +++ b/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/src/c/auxiliaryFunctions/rand/i16rands.c b/src/c/auxiliaryFunctions/rand/i16rands.c index ca2ed9c..67173d2 100644 --- a/src/c/auxiliaryFunctions/rand/i16rands.c +++ b/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/src/c/auxiliaryFunctions/rand/i8randa.c b/src/c/auxiliaryFunctions/rand/i8randa.c index d679c65..68d3ff3 100644 --- a/src/c/auxiliaryFunctions/rand/i8randa.c +++ b/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/src/c/auxiliaryFunctions/rand/i8rands.c b/src/c/auxiliaryFunctions/rand/i8rands.c index 55df909..e9b30a3 100644 --- a/src/c/auxiliaryFunctions/rand/i8rands.c +++ b/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/src/c/auxiliaryFunctions/rand/u16randa.c b/src/c/auxiliaryFunctions/rand/u16randa.c index f539336..cfcfb50 100644 --- a/src/c/auxiliaryFunctions/rand/u16randa.c +++ b/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/src/c/auxiliaryFunctions/rand/u16rands.c b/src/c/auxiliaryFunctions/rand/u16rands.c index a08d6a8..2023be4 100644 --- a/src/c/auxiliaryFunctions/rand/u16rands.c +++ b/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/src/c/auxiliaryFunctions/rand/u8randa.c b/src/c/auxiliaryFunctions/rand/u8randa.c index 4d7d3f8..a7fc583 100644 --- a/src/c/auxiliaryFunctions/rand/u8randa.c +++ b/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/src/c/auxiliaryFunctions/rand/u8rands.c b/src/c/auxiliaryFunctions/rand/u8rands.c index bdf7f9a..d03741a 100644 --- a/src/c/auxiliaryFunctions/rand/u8rands.c +++ b/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/src/c/auxiliaryFunctions/sign/i16signa.c b/src/c/auxiliaryFunctions/sign/i16signa.c index c1d9e91..a2b6182 100644 --- a/src/c/auxiliaryFunctions/sign/i16signa.c +++ b/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/src/c/auxiliaryFunctions/sign/i16signs.c b/src/c/auxiliaryFunctions/sign/i16signs.c index a3a11ab..b6e70a8 100644 --- a/src/c/auxiliaryFunctions/sign/i16signs.c +++ b/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/src/c/auxiliaryFunctions/sign/i8signa.c b/src/c/auxiliaryFunctions/sign/i8signa.c index c86e0fb..3390b04 100644 --- a/src/c/auxiliaryFunctions/sign/i8signa.c +++ b/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/src/c/auxiliaryFunctions/sign/i8signs.c b/src/c/auxiliaryFunctions/sign/i8signs.c index ced00a7..4bbefeb 100644 --- a/src/c/auxiliaryFunctions/sign/i8signs.c +++ b/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/src/c/auxiliaryFunctions/sign/u16signa.c b/src/c/auxiliaryFunctions/sign/u16signa.c index 3cc4f66..b962ee2 100644 --- a/src/c/auxiliaryFunctions/sign/u16signa.c +++ b/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/src/c/auxiliaryFunctions/sign/u16signs.c b/src/c/auxiliaryFunctions/sign/u16signs.c index 7f18722..d04d19c 100644 --- a/src/c/auxiliaryFunctions/sign/u16signs.c +++ b/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/src/c/auxiliaryFunctions/sign/u8signa.c b/src/c/auxiliaryFunctions/sign/u8signa.c index 34021b5..980931e 100644 --- a/src/c/auxiliaryFunctions/sign/u8signa.c +++ b/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/src/c/auxiliaryFunctions/sign/u8signs.c b/src/c/auxiliaryFunctions/sign/u8signs.c index 437da77..69d766b 100644 --- a/src/c/auxiliaryFunctions/sign/u8signs.c +++ b/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/src/c/elementaryFunctions/bitand/u16bitanda.c b/src/c/elementaryFunctions/bitand/u16bitanda.c index 743161e..ff92399 100644 --- a/src/c/elementaryFunctions/bitand/u16bitanda.c +++ b/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/src/c/elementaryFunctions/bitand/u16bitands.c b/src/c/elementaryFunctions/bitand/u16bitands.c index 7ba73c1..2fb78d1 100644 --- a/src/c/elementaryFunctions/bitand/u16bitands.c +++ b/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/src/c/elementaryFunctions/bitand/u8bitanda.c b/src/c/elementaryFunctions/bitand/u8bitanda.c index e1260a7..1622ec5 100644 --- a/src/c/elementaryFunctions/bitand/u8bitanda.c +++ b/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/src/c/elementaryFunctions/bitand/u8bitands.c b/src/c/elementaryFunctions/bitand/u8bitands.c index eda3ccc..30dde0f 100644 --- a/src/c/elementaryFunctions/bitand/u8bitands.c +++ b/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/src/c/elementaryFunctions/bitcmp/u16bitcmpa.c b/src/c/elementaryFunctions/bitcmp/u16bitcmpa.c index 5581371..2d25d8d 100644 --- a/src/c/elementaryFunctions/bitcmp/u16bitcmpa.c +++ b/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/src/c/elementaryFunctions/bitcmp/u16bitcmps.c b/src/c/elementaryFunctions/bitcmp/u16bitcmps.c index fc43b37..1cc2e29 100644 --- a/src/c/elementaryFunctions/bitcmp/u16bitcmps.c +++ b/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/src/c/elementaryFunctions/bitcmp/u8bitcmpa.c b/src/c/elementaryFunctions/bitcmp/u8bitcmpa.c index 67bde28..c368f7d 100644 --- a/src/c/elementaryFunctions/bitcmp/u8bitcmpa.c +++ b/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/src/c/elementaryFunctions/bitcmp/u8bitcmps.c b/src/c/elementaryFunctions/bitcmp/u8bitcmps.c index c3f18b1..9d1affe 100644 --- a/src/c/elementaryFunctions/bitcmp/u8bitcmps.c +++ b/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/src/c/elementaryFunctions/bitget/u16bitgets.c b/src/c/elementaryFunctions/bitget/u16bitgets.c index 20593bf..659d785 100644 --- a/src/c/elementaryFunctions/bitget/u16bitgets.c +++ b/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/src/c/elementaryFunctions/bitget/u8bitgets.c b/src/c/elementaryFunctions/bitget/u8bitgets.c index 130bff8..03cc909 100644 --- a/src/c/elementaryFunctions/bitget/u8bitgets.c +++ b/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/src/c/elementaryFunctions/bitor/u16bitora.c b/src/c/elementaryFunctions/bitor/u16bitora.c index 84722e1..152ab53 100644 --- a/src/c/elementaryFunctions/bitor/u16bitora.c +++ b/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/src/c/elementaryFunctions/bitor/u16bitors.c b/src/c/elementaryFunctions/bitor/u16bitors.c index e48e300..984191e 100644 --- a/src/c/elementaryFunctions/bitor/u16bitors.c +++ b/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/src/c/elementaryFunctions/bitor/u8bitora.c b/src/c/elementaryFunctions/bitor/u8bitora.c index edda9bb..83d08d5 100644 --- a/src/c/elementaryFunctions/bitor/u8bitora.c +++ b/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/src/c/elementaryFunctions/bitor/u8bitors.c b/src/c/elementaryFunctions/bitor/u8bitors.c index 56d3540..9327eff 100644 --- a/src/c/elementaryFunctions/bitor/u8bitors.c +++ b/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/src/c/elementaryFunctions/bitset/u16bitsets.c b/src/c/elementaryFunctions/bitset/u16bitsets.c index ff72be3..179b7f2 100644 --- a/src/c/elementaryFunctions/bitset/u16bitsets.c +++ b/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/src/c/elementaryFunctions/bitset/u8bitsets.c b/src/c/elementaryFunctions/bitset/u8bitsets.c index b97a157..1ff0d16 100644 --- a/src/c/elementaryFunctions/bitset/u8bitsets.c +++ b/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/src/c/elementaryFunctions/bitxor/u16bitxora.c b/src/c/elementaryFunctions/bitxor/u16bitxora.c index 6f50f06..413caa6 100644 --- a/src/c/elementaryFunctions/bitxor/u16bitxora.c +++ b/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/src/c/elementaryFunctions/bitxor/u16bitxors.c b/src/c/elementaryFunctions/bitxor/u16bitxors.c index 03ca8f8..b60fbb6 100644 --- a/src/c/elementaryFunctions/bitxor/u16bitxors.c +++ b/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/src/c/elementaryFunctions/bitxor/u8bitxora.c b/src/c/elementaryFunctions/bitxor/u8bitxora.c index ad7cc24..7463487 100644 --- a/src/c/elementaryFunctions/bitxor/u8bitxora.c +++ b/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/src/c/elementaryFunctions/bitxor/u8bitxors.c b/src/c/elementaryFunctions/bitxor/u8bitxors.c index 9a346ee..338f548 100644 --- a/src/c/elementaryFunctions/bitxor/u8bitxors.c +++ b/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/src/c/elementaryFunctions/ceil/i16ceila.c b/src/c/elementaryFunctions/ceil/i16ceila.c index a960fa8..7b639e2 100644 --- a/src/c/elementaryFunctions/ceil/i16ceila.c +++ b/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/src/c/elementaryFunctions/ceil/i16ceils.c b/src/c/elementaryFunctions/ceil/i16ceils.c index 2dee983..0b13c7e 100644 --- a/src/c/elementaryFunctions/ceil/i16ceils.c +++ b/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/src/c/elementaryFunctions/ceil/i8ceila.c b/src/c/elementaryFunctions/ceil/i8ceila.c index 3308174..aab8f78 100644 --- a/src/c/elementaryFunctions/ceil/i8ceila.c +++ b/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/src/c/elementaryFunctions/ceil/i8ceils.c b/src/c/elementaryFunctions/ceil/i8ceils.c index e87bd61..901f87c 100644 --- a/src/c/elementaryFunctions/ceil/i8ceils.c +++ b/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/src/c/elementaryFunctions/ceil/u16ceila.c b/src/c/elementaryFunctions/ceil/u16ceila.c index c7e83df..cde894d 100644 --- a/src/c/elementaryFunctions/ceil/u16ceila.c +++ b/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/src/c/elementaryFunctions/ceil/u16ceils.c b/src/c/elementaryFunctions/ceil/u16ceils.c index 4632eec..1110b4b 100644 --- a/src/c/elementaryFunctions/ceil/u16ceils.c +++ b/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/src/c/elementaryFunctions/ceil/u8ceila.c b/src/c/elementaryFunctions/ceil/u8ceila.c index 3bb4ca9..3d05a50 100644 --- a/src/c/elementaryFunctions/ceil/u8ceila.c +++ b/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/src/c/elementaryFunctions/ceil/u8ceils.c b/src/c/elementaryFunctions/ceil/u8ceils.c index 7f28bba..c1ba0b0 100644 --- a/src/c/elementaryFunctions/ceil/u8ceils.c +++ b/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/src/c/elementaryFunctions/cos/i16cosa.c b/src/c/elementaryFunctions/cos/i16cosa.c index fb3c637..426eeab 100644 --- a/src/c/elementaryFunctions/cos/i16cosa.c +++ b/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/src/c/elementaryFunctions/cos/i16coss.c b/src/c/elementaryFunctions/cos/i16coss.c index a46f8e2..ce345d7 100644 --- a/src/c/elementaryFunctions/cos/i16coss.c +++ b/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/src/c/elementaryFunctions/cos/i8cosa.c b/src/c/elementaryFunctions/cos/i8cosa.c index 7517b31..2f0053c 100644 --- a/src/c/elementaryFunctions/cos/i8cosa.c +++ b/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/src/c/elementaryFunctions/cos/i8coss.c b/src/c/elementaryFunctions/cos/i8coss.c index cd09e06..02d8216 100644 --- a/src/c/elementaryFunctions/cos/i8coss.c +++ b/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/src/c/elementaryFunctions/cos/u16cosa.c b/src/c/elementaryFunctions/cos/u16cosa.c index 63bbdae..6e752e2 100644 --- a/src/c/elementaryFunctions/cos/u16cosa.c +++ b/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/src/c/elementaryFunctions/cos/u16coss.c b/src/c/elementaryFunctions/cos/u16coss.c index 95971fe..c4c8616 100644 --- a/src/c/elementaryFunctions/cos/u16coss.c +++ b/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/src/c/elementaryFunctions/cos/u8cosa.c b/src/c/elementaryFunctions/cos/u8cosa.c index 25de95e..ad129e1 100644 --- a/src/c/elementaryFunctions/cos/u8cosa.c +++ b/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/src/c/elementaryFunctions/cos/u8coss.c b/src/c/elementaryFunctions/cos/u8coss.c index 9ee1186..30400c1 100644 --- a/src/c/elementaryFunctions/cos/u8coss.c +++ b/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/src/c/elementaryFunctions/cosh/i16cosha.c b/src/c/elementaryFunctions/cosh/i16cosha.c index eb2e9f9..edb56f9 100644 --- a/src/c/elementaryFunctions/cosh/i16cosha.c +++ b/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/src/c/elementaryFunctions/cosh/i16coshs.c b/src/c/elementaryFunctions/cosh/i16coshs.c index 7d6084f..10d3eb9 100644 --- a/src/c/elementaryFunctions/cosh/i16coshs.c +++ b/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/src/c/elementaryFunctions/cosh/i8cosha.c b/src/c/elementaryFunctions/cosh/i8cosha.c index beed9b3..4ec7592 100644 --- a/src/c/elementaryFunctions/cosh/i8cosha.c +++ b/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/src/c/elementaryFunctions/cosh/i8coshs.c b/src/c/elementaryFunctions/cosh/i8coshs.c index 885d119..bc30122 100644 --- a/src/c/elementaryFunctions/cosh/i8coshs.c +++ b/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/src/c/elementaryFunctions/cosh/u16cosha.c b/src/c/elementaryFunctions/cosh/u16cosha.c index e0c4183..83d3786 100644 --- a/src/c/elementaryFunctions/cosh/u16cosha.c +++ b/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/src/c/elementaryFunctions/cosh/u16coshs.c b/src/c/elementaryFunctions/cosh/u16coshs.c index 5637bb3..22f6ded 100644 --- a/src/c/elementaryFunctions/cosh/u16coshs.c +++ b/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/src/c/elementaryFunctions/cosh/u8cosha.c b/src/c/elementaryFunctions/cosh/u8cosha.c index 9584b3e..4b44c28 100644 --- a/src/c/elementaryFunctions/cosh/u8cosha.c +++ b/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/src/c/elementaryFunctions/cosh/u8coshs.c b/src/c/elementaryFunctions/cosh/u8coshs.c index 7a6715f..bed1eb9 100644 --- a/src/c/elementaryFunctions/cosh/u8coshs.c +++ b/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/src/c/elementaryFunctions/exp/i16expa.c b/src/c/elementaryFunctions/exp/i16expa.c index faa8a12..cd66c85 100644 --- a/src/c/elementaryFunctions/exp/i16expa.c +++ b/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/src/c/elementaryFunctions/exp/i16exps.c b/src/c/elementaryFunctions/exp/i16exps.c index 97b57d9..12e85ee 100644 --- a/src/c/elementaryFunctions/exp/i16exps.c +++ b/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/src/c/elementaryFunctions/exp/i8expa.c b/src/c/elementaryFunctions/exp/i8expa.c index 7f731fc..e45becb 100644 --- a/src/c/elementaryFunctions/exp/i8expa.c +++ b/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/src/c/elementaryFunctions/exp/i8exps.c b/src/c/elementaryFunctions/exp/i8exps.c index 6f2d43c..8d33d20 100644 --- a/src/c/elementaryFunctions/exp/i8exps.c +++ b/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/src/c/elementaryFunctions/exp/u16expa.c b/src/c/elementaryFunctions/exp/u16expa.c index 0426ab4..1655dfe 100644 --- a/src/c/elementaryFunctions/exp/u16expa.c +++ b/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/src/c/elementaryFunctions/exp/u16exps.c b/src/c/elementaryFunctions/exp/u16exps.c index 64f5c5b..d36cf1e 100644 --- a/src/c/elementaryFunctions/exp/u16exps.c +++ b/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/src/c/elementaryFunctions/exp/u8expa.c b/src/c/elementaryFunctions/exp/u8expa.c index bd90e04..828fb3d 100644 --- a/src/c/elementaryFunctions/exp/u8expa.c +++ b/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/src/c/elementaryFunctions/exp/u8exps.c b/src/c/elementaryFunctions/exp/u8exps.c index e48953f..cae731a 100644 --- a/src/c/elementaryFunctions/exp/u8exps.c +++ b/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/src/c/elementaryFunctions/fix/i16fixa.c b/src/c/elementaryFunctions/fix/i16fixa.c index 2ccb933..07cd75b 100644 --- a/src/c/elementaryFunctions/fix/i16fixa.c +++ b/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/src/c/elementaryFunctions/fix/i16fixs.c b/src/c/elementaryFunctions/fix/i16fixs.c index 5a13ca0..f133d8a 100644 --- a/src/c/elementaryFunctions/fix/i16fixs.c +++ b/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/src/c/elementaryFunctions/fix/i8fixa.c b/src/c/elementaryFunctions/fix/i8fixa.c index 4e913a3..bb20f2d 100644 --- a/src/c/elementaryFunctions/fix/i8fixa.c +++ b/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/src/c/elementaryFunctions/fix/i8fixs.c b/src/c/elementaryFunctions/fix/i8fixs.c index ae331ff..adeb3dd 100644 --- a/src/c/elementaryFunctions/fix/i8fixs.c +++ b/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/src/c/elementaryFunctions/fix/u16fixa.c b/src/c/elementaryFunctions/fix/u16fixa.c index 5798300..acddf8d 100644 --- a/src/c/elementaryFunctions/fix/u16fixa.c +++ b/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/src/c/elementaryFunctions/fix/u16fixs.c b/src/c/elementaryFunctions/fix/u16fixs.c index cf17847..1ff7a8a 100644 --- a/src/c/elementaryFunctions/fix/u16fixs.c +++ b/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/src/c/elementaryFunctions/fix/u8fixa.c b/src/c/elementaryFunctions/fix/u8fixa.c index 2a3bd3b..c86545b 100644 --- a/src/c/elementaryFunctions/fix/u8fixa.c +++ b/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/src/c/elementaryFunctions/fix/u8fixs.c b/src/c/elementaryFunctions/fix/u8fixs.c index 563bfe9..c774004 100644 --- a/src/c/elementaryFunctions/fix/u8fixs.c +++ b/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/src/c/elementaryFunctions/floor/i16floora.c b/src/c/elementaryFunctions/floor/i16floora.c index 69140b0..7b7a211 100644 --- a/src/c/elementaryFunctions/floor/i16floora.c +++ b/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/src/c/elementaryFunctions/floor/i16floors.c b/src/c/elementaryFunctions/floor/i16floors.c index 428a745..cc35cf9 100644 --- a/src/c/elementaryFunctions/floor/i16floors.c +++ b/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/src/c/elementaryFunctions/floor/i8floora.c b/src/c/elementaryFunctions/floor/i8floora.c index 0554f1e..5579321 100644 --- a/src/c/elementaryFunctions/floor/i8floora.c +++ b/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/src/c/elementaryFunctions/floor/i8floors.c b/src/c/elementaryFunctions/floor/i8floors.c index e78dfa1..30967cd 100644 --- a/src/c/elementaryFunctions/floor/i8floors.c +++ b/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/src/c/elementaryFunctions/floor/u16floora.c b/src/c/elementaryFunctions/floor/u16floora.c index 56e35ca..abff807 100644 --- a/src/c/elementaryFunctions/floor/u16floora.c +++ b/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/src/c/elementaryFunctions/floor/u16floors.c b/src/c/elementaryFunctions/floor/u16floors.c index 65455c1..a1fca9b 100644 --- a/src/c/elementaryFunctions/floor/u16floors.c +++ b/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/src/c/elementaryFunctions/floor/u8floora.c b/src/c/elementaryFunctions/floor/u8floora.c index ace7ff7..04a980e 100644 --- a/src/c/elementaryFunctions/floor/u8floora.c +++ b/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/src/c/elementaryFunctions/floor/u8floors.c b/src/c/elementaryFunctions/floor/u8floors.c index efb2e8c..87a4e1f 100644 --- a/src/c/elementaryFunctions/floor/u8floors.c +++ b/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/src/c/elementaryFunctions/includes/bitand.h b/src/c/elementaryFunctions/includes/bitand.h index f411e05..ee13262 100644 --- a/src/c/elementaryFunctions/includes/bitand.h +++ b/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/src/c/elementaryFunctions/includes/bitcmp.h b/src/c/elementaryFunctions/includes/bitcmp.h index aa18265..ead0b82 100644 --- a/src/c/elementaryFunctions/includes/bitcmp.h +++ b/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/src/c/elementaryFunctions/includes/bitget.h b/src/c/elementaryFunctions/includes/bitget.h index 4719155..9e12abd 100644 --- a/src/c/elementaryFunctions/includes/bitget.h +++ b/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/src/c/elementaryFunctions/includes/bitor.h b/src/c/elementaryFunctions/includes/bitor.h index d915ffa..3f2ae08 100644 --- a/src/c/elementaryFunctions/includes/bitor.h +++ b/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/src/c/elementaryFunctions/includes/bitset.h b/src/c/elementaryFunctions/includes/bitset.h index 52f9f2c..5d519de 100644 --- a/src/c/elementaryFunctions/includes/bitset.h +++ b/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/src/c/elementaryFunctions/includes/bitxor.h b/src/c/elementaryFunctions/includes/bitxor.h index 3bc77a2..5d42957 100644 --- a/src/c/elementaryFunctions/includes/bitxor.h +++ b/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/src/c/elementaryFunctions/includes/int16.h b/src/c/elementaryFunctions/includes/int16.h index 8c8204f..6135e6b 100644 --- a/src/c/elementaryFunctions/includes/int16.h +++ b/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/src/c/elementaryFunctions/includes/int8.h b/src/c/elementaryFunctions/includes/int8.h index 795190e..0ac8723 100644 --- a/src/c/elementaryFunctions/includes/int8.h +++ b/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/src/c/elementaryFunctions/includes/linspace.h b/src/c/elementaryFunctions/includes/linspace.h index 837d839..92fe10e 100644 --- a/src/c/elementaryFunctions/includes/linspace.h +++ b/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/src/c/elementaryFunctions/includes/logspace.h b/src/c/elementaryFunctions/includes/logspace.h index 1f73402..eee39de 100644 --- a/src/c/elementaryFunctions/includes/logspace.h +++ b/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/src/c/elementaryFunctions/includes/uint16.h b/src/c/elementaryFunctions/includes/uint16.h index 98625e6..9e16213 100644 --- a/src/c/elementaryFunctions/includes/uint16.h +++ b/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/src/c/elementaryFunctions/includes/uint8.h b/src/c/elementaryFunctions/includes/uint8.h index 264230a..63071c4 100644 --- a/src/c/elementaryFunctions/includes/uint8.h +++ b/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/src/c/elementaryFunctions/int16/dint16a.c b/src/c/elementaryFunctions/int16/dint16a.c index 73c9ec7..e3b9611 100644 --- a/src/c/elementaryFunctions/int16/dint16a.c +++ b/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/src/c/elementaryFunctions/int16/dint16s.c b/src/c/elementaryFunctions/int16/dint16s.c index 76ee96b..6f09631 100644 --- a/src/c/elementaryFunctions/int16/dint16s.c +++ b/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/src/c/elementaryFunctions/int16/i8int16a.c b/src/c/elementaryFunctions/int16/i8int16a.c index 82c637c..0885b02 100644 --- a/src/c/elementaryFunctions/int16/i8int16a.c +++ b/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/src/c/elementaryFunctions/int16/i8int16s.c b/src/c/elementaryFunctions/int16/i8int16s.c index a7a2379..4a42acc 100644 --- a/src/c/elementaryFunctions/int16/i8int16s.c +++ b/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/src/c/elementaryFunctions/int16/sint16a.c b/src/c/elementaryFunctions/int16/sint16a.c index 33058ea..9769127 100644 --- a/src/c/elementaryFunctions/int16/sint16a.c +++ b/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/src/c/elementaryFunctions/int16/sint16s.c b/src/c/elementaryFunctions/int16/sint16s.c index 4634a39..2dd7af2 100644 --- a/src/c/elementaryFunctions/int16/sint16s.c +++ b/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/src/c/elementaryFunctions/int16/u16int16a.c b/src/c/elementaryFunctions/int16/u16int16a.c index e6756d3..bc63198 100644 --- a/src/c/elementaryFunctions/int16/u16int16a.c +++ b/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/src/c/elementaryFunctions/int16/u16int16s.c b/src/c/elementaryFunctions/int16/u16int16s.c index 26f32b2..ad226db 100644 --- a/src/c/elementaryFunctions/int16/u16int16s.c +++ b/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/src/c/elementaryFunctions/int16/u8int16a.c b/src/c/elementaryFunctions/int16/u8int16a.c index 8ed290a..8c9f94b 100644 --- a/src/c/elementaryFunctions/int16/u8int16a.c +++ b/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/src/c/elementaryFunctions/int16/u8int16s.c b/src/c/elementaryFunctions/int16/u8int16s.c index 29132af..463565f 100644 --- a/src/c/elementaryFunctions/int16/u8int16s.c +++ b/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/src/c/elementaryFunctions/int8/dint8a.c b/src/c/elementaryFunctions/int8/dint8a.c index 719d6f4..035ea4f 100644 --- a/src/c/elementaryFunctions/int8/dint8a.c +++ b/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/src/c/elementaryFunctions/int8/dint8s.c b/src/c/elementaryFunctions/int8/dint8s.c index f1789e6..3b55414 100644 --- a/src/c/elementaryFunctions/int8/dint8s.c +++ b/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/src/c/elementaryFunctions/int8/i16int8a.c b/src/c/elementaryFunctions/int8/i16int8a.c index 311b751..b9aa093 100644 --- a/src/c/elementaryFunctions/int8/i16int8a.c +++ b/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/src/c/elementaryFunctions/int8/i16int8s.c b/src/c/elementaryFunctions/int8/i16int8s.c index e66b35d..1bdd176 100644 --- a/src/c/elementaryFunctions/int8/i16int8s.c +++ b/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/src/c/elementaryFunctions/int8/sint8a.c b/src/c/elementaryFunctions/int8/sint8a.c index 87846a7..4a04a4b 100644 --- a/src/c/elementaryFunctions/int8/sint8a.c +++ b/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/src/c/elementaryFunctions/int8/sint8s.c b/src/c/elementaryFunctions/int8/sint8s.c index 89d4b81..6e4093e 100644 --- a/src/c/elementaryFunctions/int8/sint8s.c +++ b/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/src/c/elementaryFunctions/int8/u16int8a.c b/src/c/elementaryFunctions/int8/u16int8a.c index 3db0c92..958dcb7 100644 --- a/src/c/elementaryFunctions/int8/u16int8a.c +++ b/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/src/c/elementaryFunctions/int8/u16int8s.c b/src/c/elementaryFunctions/int8/u16int8s.c index b59c677..440b5d8 100644 --- a/src/c/elementaryFunctions/int8/u16int8s.c +++ b/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/src/c/elementaryFunctions/int8/u8int8a.c b/src/c/elementaryFunctions/int8/u8int8a.c index 2bee86a..310aafd 100644 --- a/src/c/elementaryFunctions/int8/u8int8a.c +++ b/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/src/c/elementaryFunctions/int8/u8int8s.c b/src/c/elementaryFunctions/int8/u8int8s.c index 2c2fa07..40b7e93 100644 --- a/src/c/elementaryFunctions/int8/u8int8s.c +++ b/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/src/c/elementaryFunctions/interfaces/int_bitand.h b/src/c/elementaryFunctions/interfaces/int_bitand.h index 26031ad..8b208ea 100644 --- a/src/c/elementaryFunctions/interfaces/int_bitand.h +++ b/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/src/c/elementaryFunctions/interfaces/int_bitcmp.h b/src/c/elementaryFunctions/interfaces/int_bitcmp.h index d72eb2e..d49289f 100644 --- a/src/c/elementaryFunctions/interfaces/int_bitcmp.h +++ b/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/src/c/elementaryFunctions/interfaces/int_bitget.h b/src/c/elementaryFunctions/interfaces/int_bitget.h index 7b6b8e9..ea930ab 100644 --- a/src/c/elementaryFunctions/interfaces/int_bitget.h +++ b/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/src/c/elementaryFunctions/interfaces/int_bitor.h b/src/c/elementaryFunctions/interfaces/int_bitor.h index 6a65c9f..00edc48 100644 --- a/src/c/elementaryFunctions/interfaces/int_bitor.h +++ b/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/src/c/elementaryFunctions/interfaces/int_bitset.h b/src/c/elementaryFunctions/interfaces/int_bitset.h index e864325..a37160b 100644 --- a/src/c/elementaryFunctions/interfaces/int_bitset.h +++ b/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/src/c/elementaryFunctions/interfaces/int_bitxor.h b/src/c/elementaryFunctions/interfaces/int_bitxor.h index 30aea6c..1722c90 100644 --- a/src/c/elementaryFunctions/interfaces/int_bitxor.h +++ b/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/src/c/elementaryFunctions/interfaces/int_int16.h b/src/c/elementaryFunctions/interfaces/int_int16.h index a5d6610..4f32fe9 100644 --- a/src/c/elementaryFunctions/interfaces/int_int16.h +++ b/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/src/c/elementaryFunctions/interfaces/int_int8.h b/src/c/elementaryFunctions/interfaces/int_int8.h index 9a50e01..5628c5a 100644 --- a/src/c/elementaryFunctions/interfaces/int_int8.h +++ b/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/src/c/elementaryFunctions/interfaces/int_linspace.h b/src/c/elementaryFunctions/interfaces/int_linspace.h index 4e60b15..f8af947 100644 --- a/src/c/elementaryFunctions/interfaces/int_linspace.h +++ b/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/src/c/elementaryFunctions/interfaces/int_logspace.h b/src/c/elementaryFunctions/interfaces/int_logspace.h index 34e325a..2c24400 100644 --- a/src/c/elementaryFunctions/interfaces/int_logspace.h +++ b/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/src/c/elementaryFunctions/interfaces/int_uint16.h b/src/c/elementaryFunctions/interfaces/int_uint16.h index 6d69caf..1280877 100644 --- a/src/c/elementaryFunctions/interfaces/int_uint16.h +++ b/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/src/c/elementaryFunctions/interfaces/int_uint8.h b/src/c/elementaryFunctions/interfaces/int_uint8.h index b29d7bb..ac0bc43 100644 --- a/src/c/elementaryFunctions/interfaces/int_uint8.h +++ b/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/src/c/elementaryFunctions/linspace/dlinspacea.c b/src/c/elementaryFunctions/linspace/dlinspacea.c index d2ca698..cb60f9e 100644 --- a/src/c/elementaryFunctions/linspace/dlinspacea.c +++ b/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/src/c/elementaryFunctions/linspace/dlinspaces.c b/src/c/elementaryFunctions/linspace/dlinspaces.c index daeb825..9ac8027 100644 --- a/src/c/elementaryFunctions/linspace/dlinspaces.c +++ b/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/src/c/elementaryFunctions/logspace/dlogspacea.c b/src/c/elementaryFunctions/logspace/dlogspacea.c index 9ea551b..3a9caf1 100644 --- a/src/c/elementaryFunctions/logspace/dlogspacea.c +++ b/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/src/c/elementaryFunctions/logspace/dlogspaces.c b/src/c/elementaryFunctions/logspace/dlogspaces.c index 851713b..df9c94f 100644 --- a/src/c/elementaryFunctions/logspace/dlogspaces.c +++ b/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/src/c/elementaryFunctions/pow/i16powa.c b/src/c/elementaryFunctions/pow/i16powa.c index e8e87fd..eecce15 100644 --- a/src/c/elementaryFunctions/pow/i16powa.c +++ b/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/src/c/elementaryFunctions/pow/i16pows.c b/src/c/elementaryFunctions/pow/i16pows.c index c8068c7..63f92d9 100644 --- a/src/c/elementaryFunctions/pow/i16pows.c +++ b/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/src/c/elementaryFunctions/pow/i8powa.c b/src/c/elementaryFunctions/pow/i8powa.c index e17b666..bf94822 100644 --- a/src/c/elementaryFunctions/pow/i8powa.c +++ b/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/src/c/elementaryFunctions/pow/i8pows.c b/src/c/elementaryFunctions/pow/i8pows.c index 3566c41..125ef8c 100644 --- a/src/c/elementaryFunctions/pow/i8pows.c +++ b/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/src/c/elementaryFunctions/pow/u16powa.c b/src/c/elementaryFunctions/pow/u16powa.c index 65ba77e..df34972 100644 --- a/src/c/elementaryFunctions/pow/u16powa.c +++ b/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/src/c/elementaryFunctions/pow/u16pows.c b/src/c/elementaryFunctions/pow/u16pows.c index 34672b0..49dd654 100644 --- a/src/c/elementaryFunctions/pow/u16pows.c +++ b/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/src/c/elementaryFunctions/pow/u8powa.c b/src/c/elementaryFunctions/pow/u8powa.c index b69431c..90bcc64 100644 --- a/src/c/elementaryFunctions/pow/u8powa.c +++ b/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/src/c/elementaryFunctions/pow/u8pows.c b/src/c/elementaryFunctions/pow/u8pows.c index 786b919..cfcd4c6 100644 --- a/src/c/elementaryFunctions/pow/u8pows.c +++ b/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/src/c/elementaryFunctions/round/i16rounda.c b/src/c/elementaryFunctions/round/i16rounda.c index 5cacafa..26ed262 100644 --- a/src/c/elementaryFunctions/round/i16rounda.c +++ b/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/src/c/elementaryFunctions/round/i16rounds.c b/src/c/elementaryFunctions/round/i16rounds.c index 95bd609..68bd7a4 100644 --- a/src/c/elementaryFunctions/round/i16rounds.c +++ b/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/src/c/elementaryFunctions/round/i8rounda.c b/src/c/elementaryFunctions/round/i8rounda.c index c47be51..bb0b0c9 100644 --- a/src/c/elementaryFunctions/round/i8rounda.c +++ b/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/src/c/elementaryFunctions/round/i8rounds.c b/src/c/elementaryFunctions/round/i8rounds.c index f37d53c..bb73724 100644 --- a/src/c/elementaryFunctions/round/i8rounds.c +++ b/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/src/c/elementaryFunctions/round/u16rounda.c b/src/c/elementaryFunctions/round/u16rounda.c index 38c4b28..1b0b1ed 100644 --- a/src/c/elementaryFunctions/round/u16rounda.c +++ b/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/src/c/elementaryFunctions/round/u16rounds.c b/src/c/elementaryFunctions/round/u16rounds.c index babda6d..f8a4ad4 100644 --- a/src/c/elementaryFunctions/round/u16rounds.c +++ b/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/src/c/elementaryFunctions/round/u8rounda.c b/src/c/elementaryFunctions/round/u8rounda.c index e8f828d..b58a6d2 100644 --- a/src/c/elementaryFunctions/round/u8rounda.c +++ b/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/src/c/elementaryFunctions/round/u8rounds.c b/src/c/elementaryFunctions/round/u8rounds.c index 7e3da17..e27cc2c 100644 --- a/src/c/elementaryFunctions/round/u8rounds.c +++ b/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/src/c/elementaryFunctions/sin/i16sina.c b/src/c/elementaryFunctions/sin/i16sina.c index 0a00146..4e9a3b0 100644 --- a/src/c/elementaryFunctions/sin/i16sina.c +++ b/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/src/c/elementaryFunctions/sin/i16sins.c b/src/c/elementaryFunctions/sin/i16sins.c index cbf69d6..3a8dc4d 100644 --- a/src/c/elementaryFunctions/sin/i16sins.c +++ b/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/src/c/elementaryFunctions/sin/i8sina.c b/src/c/elementaryFunctions/sin/i8sina.c index f811501..2457388 100644 --- a/src/c/elementaryFunctions/sin/i8sina.c +++ b/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/src/c/elementaryFunctions/sin/i8sins.c b/src/c/elementaryFunctions/sin/i8sins.c index ab522ef..4e6deab 100644 --- a/src/c/elementaryFunctions/sin/i8sins.c +++ b/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/src/c/elementaryFunctions/sin/u16sina.c b/src/c/elementaryFunctions/sin/u16sina.c index fa4645f..03054c2 100644 --- a/src/c/elementaryFunctions/sin/u16sina.c +++ b/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/src/c/elementaryFunctions/sin/u16sins.c b/src/c/elementaryFunctions/sin/u16sins.c index dfa215d..9610248 100644 --- a/src/c/elementaryFunctions/sin/u16sins.c +++ b/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/src/c/elementaryFunctions/sin/u8sina.c b/src/c/elementaryFunctions/sin/u8sina.c index 2bfe866..271d645 100644 --- a/src/c/elementaryFunctions/sin/u8sina.c +++ b/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/src/c/elementaryFunctions/sin/u8sins.c b/src/c/elementaryFunctions/sin/u8sins.c index b1d3179..50e8bfe 100644 --- a/src/c/elementaryFunctions/sin/u8sins.c +++ b/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/src/c/elementaryFunctions/sinh/i16sinha.c b/src/c/elementaryFunctions/sinh/i16sinha.c index 107d999..71ad70b 100644 --- a/src/c/elementaryFunctions/sinh/i16sinha.c +++ b/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/src/c/elementaryFunctions/sinh/i16sinhs.c b/src/c/elementaryFunctions/sinh/i16sinhs.c index ade1d6f..a13cf37 100644 --- a/src/c/elementaryFunctions/sinh/i16sinhs.c +++ b/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/src/c/elementaryFunctions/sinh/i8sinha.c b/src/c/elementaryFunctions/sinh/i8sinha.c index e5fe6e4..5002574 100644 --- a/src/c/elementaryFunctions/sinh/i8sinha.c +++ b/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/src/c/elementaryFunctions/sinh/i8sinhs.c b/src/c/elementaryFunctions/sinh/i8sinhs.c index 69bf5ba..8c34bf4 100644 --- a/src/c/elementaryFunctions/sinh/i8sinhs.c +++ b/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/src/c/elementaryFunctions/sinh/u16sinha.c b/src/c/elementaryFunctions/sinh/u16sinha.c index 56eb1f8..279ed48 100644 --- a/src/c/elementaryFunctions/sinh/u16sinha.c +++ b/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/src/c/elementaryFunctions/sinh/u16sinhs.c b/src/c/elementaryFunctions/sinh/u16sinhs.c index e9daf00..ca28d46 100644 --- a/src/c/elementaryFunctions/sinh/u16sinhs.c +++ b/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/src/c/elementaryFunctions/sinh/u8sinha.c b/src/c/elementaryFunctions/sinh/u8sinha.c index b1e2dfe..66a51e8 100644 --- a/src/c/elementaryFunctions/sinh/u8sinha.c +++ b/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/src/c/elementaryFunctions/sinh/u8sinhs.c b/src/c/elementaryFunctions/sinh/u8sinhs.c index 126f01c..3b2f8e6 100644 --- a/src/c/elementaryFunctions/sinh/u8sinhs.c +++ b/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/src/c/elementaryFunctions/tan/i16tana.c b/src/c/elementaryFunctions/tan/i16tana.c index cf1ed94..cbbe237 100644 --- a/src/c/elementaryFunctions/tan/i16tana.c +++ b/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/src/c/elementaryFunctions/tan/i16tans.c b/src/c/elementaryFunctions/tan/i16tans.c index 61c25d7..b7cc7bb 100644 --- a/src/c/elementaryFunctions/tan/i16tans.c +++ b/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/src/c/elementaryFunctions/tan/i8tana.c b/src/c/elementaryFunctions/tan/i8tana.c index 3312a27..4daeb47 100644 --- a/src/c/elementaryFunctions/tan/i8tana.c +++ b/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/src/c/elementaryFunctions/tan/i8tans.c b/src/c/elementaryFunctions/tan/i8tans.c index a7247a6..0dc9f9a 100644 --- a/src/c/elementaryFunctions/tan/i8tans.c +++ b/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/src/c/elementaryFunctions/tan/u16tana.c b/src/c/elementaryFunctions/tan/u16tana.c index 44e7025..12df0ee 100644 --- a/src/c/elementaryFunctions/tan/u16tana.c +++ b/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/src/c/elementaryFunctions/tan/u16tans.c b/src/c/elementaryFunctions/tan/u16tans.c index 22f6871..f184a67 100644 --- a/src/c/elementaryFunctions/tan/u16tans.c +++ b/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/src/c/elementaryFunctions/tan/u8tana.c b/src/c/elementaryFunctions/tan/u8tana.c index 725dfb3..d541b20 100644 --- a/src/c/elementaryFunctions/tan/u8tana.c +++ b/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/src/c/elementaryFunctions/tan/u8tans.c b/src/c/elementaryFunctions/tan/u8tans.c index 7af4ba2..74b5fb9 100644 --- a/src/c/elementaryFunctions/tan/u8tans.c +++ b/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/src/c/elementaryFunctions/tanh/i16tanha.c b/src/c/elementaryFunctions/tanh/i16tanha.c index 5c564d9..3a4e37c 100644 --- a/src/c/elementaryFunctions/tanh/i16tanha.c +++ b/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/src/c/elementaryFunctions/tanh/i16tanhs.c b/src/c/elementaryFunctions/tanh/i16tanhs.c index d42b267..7d8b184 100644 --- a/src/c/elementaryFunctions/tanh/i16tanhs.c +++ b/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/src/c/elementaryFunctions/tanh/i8tanha.c b/src/c/elementaryFunctions/tanh/i8tanha.c index cbcc651..dca3176 100644 --- a/src/c/elementaryFunctions/tanh/i8tanha.c +++ b/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/src/c/elementaryFunctions/tanh/i8tanhs.c b/src/c/elementaryFunctions/tanh/i8tanhs.c index 569eeaa..6351e5c 100644 --- a/src/c/elementaryFunctions/tanh/i8tanhs.c +++ b/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/src/c/elementaryFunctions/tanh/u16tanha.c b/src/c/elementaryFunctions/tanh/u16tanha.c index c7aaca4..61db747 100644 --- a/src/c/elementaryFunctions/tanh/u16tanha.c +++ b/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/src/c/elementaryFunctions/tanh/u16tanhs.c b/src/c/elementaryFunctions/tanh/u16tanhs.c index 6ce5efc..17909e7 100644 --- a/src/c/elementaryFunctions/tanh/u16tanhs.c +++ b/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/src/c/elementaryFunctions/tanh/u8tanha.c b/src/c/elementaryFunctions/tanh/u8tanha.c index 92f19a6..9ca20ee 100644 --- a/src/c/elementaryFunctions/tanh/u8tanha.c +++ b/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/src/c/elementaryFunctions/tanh/u8tanhs.c b/src/c/elementaryFunctions/tanh/u8tanhs.c index cac46c7..c6179f9 100644 --- a/src/c/elementaryFunctions/tanh/u8tanhs.c +++ b/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/src/c/elementaryFunctions/uint16/duint16a.c b/src/c/elementaryFunctions/uint16/duint16a.c index c94cd18..af9e2f5 100644 --- a/src/c/elementaryFunctions/uint16/duint16a.c +++ b/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/src/c/elementaryFunctions/uint16/duint16s.c b/src/c/elementaryFunctions/uint16/duint16s.c index 4c4918f..79bd75a 100644 --- a/src/c/elementaryFunctions/uint16/duint16s.c +++ b/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/src/c/elementaryFunctions/uint16/i16uint16a.c b/src/c/elementaryFunctions/uint16/i16uint16a.c index aea580c..64a598d 100644 --- a/src/c/elementaryFunctions/uint16/i16uint16a.c +++ b/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/src/c/elementaryFunctions/uint16/i16uint16s.c b/src/c/elementaryFunctions/uint16/i16uint16s.c index 03de75e..01d46ac 100644 --- a/src/c/elementaryFunctions/uint16/i16uint16s.c +++ b/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/src/c/elementaryFunctions/uint16/i8uint16a.c b/src/c/elementaryFunctions/uint16/i8uint16a.c index 05dc213..3cab61f 100644 --- a/src/c/elementaryFunctions/uint16/i8uint16a.c +++ b/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/src/c/elementaryFunctions/uint16/i8uint16s.c b/src/c/elementaryFunctions/uint16/i8uint16s.c index a808841..5527838 100644 --- a/src/c/elementaryFunctions/uint16/i8uint16s.c +++ b/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/src/c/elementaryFunctions/uint16/suint16a.c b/src/c/elementaryFunctions/uint16/suint16a.c index 4bc3768..e048922 100644 --- a/src/c/elementaryFunctions/uint16/suint16a.c +++ b/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/src/c/elementaryFunctions/uint16/suint16s.c b/src/c/elementaryFunctions/uint16/suint16s.c index 708237b..8d277d1 100644 --- a/src/c/elementaryFunctions/uint16/suint16s.c +++ b/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/src/c/elementaryFunctions/uint16/u8uint16a.c b/src/c/elementaryFunctions/uint16/u8uint16a.c index 0925c41..b5ca533 100644 --- a/src/c/elementaryFunctions/uint16/u8uint16a.c +++ b/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/src/c/elementaryFunctions/uint16/u8uint16s.c b/src/c/elementaryFunctions/uint16/u8uint16s.c index 9a4df17..9da480f 100644 --- a/src/c/elementaryFunctions/uint16/u8uint16s.c +++ b/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/src/c/elementaryFunctions/uint8/duint8a.c b/src/c/elementaryFunctions/uint8/duint8a.c index 0a3f2d2..02d6305 100644 --- a/src/c/elementaryFunctions/uint8/duint8a.c +++ b/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/src/c/elementaryFunctions/uint8/duint8s.c b/src/c/elementaryFunctions/uint8/duint8s.c index b797934..d7a7524 100644 --- a/src/c/elementaryFunctions/uint8/duint8s.c +++ b/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/src/c/elementaryFunctions/uint8/i16uint8a.c b/src/c/elementaryFunctions/uint8/i16uint8a.c index 9cfdcf8..49e31d1 100644 --- a/src/c/elementaryFunctions/uint8/i16uint8a.c +++ b/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/src/c/elementaryFunctions/uint8/i16uint8s.c b/src/c/elementaryFunctions/uint8/i16uint8s.c index 9b84d70..695d788 100644 --- a/src/c/elementaryFunctions/uint8/i16uint8s.c +++ b/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/src/c/elementaryFunctions/uint8/i8uint8a.c b/src/c/elementaryFunctions/uint8/i8uint8a.c index 34c65d1..89574e8 100644 --- a/src/c/elementaryFunctions/uint8/i8uint8a.c +++ b/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/src/c/elementaryFunctions/uint8/i8uint8s.c b/src/c/elementaryFunctions/uint8/i8uint8s.c index 0f57a50..4c83c4e 100644 --- a/src/c/elementaryFunctions/uint8/i8uint8s.c +++ b/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/src/c/elementaryFunctions/uint8/suint8a.c b/src/c/elementaryFunctions/uint8/suint8a.c index cf64dd4..2e1a5ac 100644 --- a/src/c/elementaryFunctions/uint8/suint8a.c +++ b/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/src/c/elementaryFunctions/uint8/suint8s.c b/src/c/elementaryFunctions/uint8/suint8s.c index e95e964..ce38c1d 100644 --- a/src/c/elementaryFunctions/uint8/suint8s.c +++ b/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/src/c/elementaryFunctions/uint8/u16uint8a.c b/src/c/elementaryFunctions/uint8/u16uint8a.c index bfb2499..0c4246e 100644 --- a/src/c/elementaryFunctions/uint8/u16uint8a.c +++ b/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/src/c/elementaryFunctions/uint8/u16uint8s.c b/src/c/elementaryFunctions/uint8/u16uint8s.c index be883eb..32d5b71 100644 --- a/src/c/elementaryFunctions/uint8/u16uint8s.c +++ b/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/src/c/hardware/rasberrypi/libraries/libbcm2835.a b/src/c/hardware/rasberrypi/libraries/libbcm2835.a Binary files differdeleted file mode 100644 index bab5afc..0000000 --- a/src/c/hardware/rasberrypi/libraries/libbcm2835.a +++ /dev/null diff --git a/src/c/hardware/rasberrypi/libraries/libpng.a.bkup b/src/c/hardware/rasberrypi/libraries/libpng.a.bkup Binary files differdeleted file mode 100644 index ae37076..0000000 --- a/src/c/hardware/rasberrypi/libraries/libpng.a.bkup +++ /dev/null diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_haartraining_engine.a b/src/c/hardware/rasberrypi/libraries/opencv/libopencv_haartraining_engine.a Binary files differdeleted file mode 100644 index 3a20f71..0000000 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_haartraining_engine.a +++ /dev/null diff --git a/src/c/matrixOperations/cat/i16cata.c b/src/c/matrixOperations/cat/i16cata.c index 9acd10e..d7187b4 100644 --- a/src/c/matrixOperations/cat/i16cata.c +++ b/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/src/c/matrixOperations/cat/i16cats.c b/src/c/matrixOperations/cat/i16cats.c index 8d8af28..11b24ac 100644 --- a/src/c/matrixOperations/cat/i16cats.c +++ b/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/src/c/matrixOperations/cat/i8cata.c b/src/c/matrixOperations/cat/i8cata.c index a2caad9..47fbfa4 100644 --- a/src/c/matrixOperations/cat/i8cata.c +++ b/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/src/c/matrixOperations/cat/i8cats.c b/src/c/matrixOperations/cat/i8cats.c index 575f8a8..51dadd1 100644 --- a/src/c/matrixOperations/cat/i8cats.c +++ b/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/src/c/matrixOperations/cat/u16cata.c b/src/c/matrixOperations/cat/u16cata.c index 2b756e5..8c33acb 100644 --- a/src/c/matrixOperations/cat/u16cata.c +++ b/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/src/c/matrixOperations/cat/u16cats.c b/src/c/matrixOperations/cat/u16cats.c index e417049..942ed76 100644 --- a/src/c/matrixOperations/cat/u16cats.c +++ b/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/src/c/matrixOperations/cat/u8cata.c b/src/c/matrixOperations/cat/u8cata.c index 2916323..ab15f42 100644 --- a/src/c/matrixOperations/cat/u8cata.c +++ b/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/src/c/matrixOperations/cat/u8cats.c b/src/c/matrixOperations/cat/u8cats.c index 249a6b8..92341f3 100644 --- a/src/c/matrixOperations/cat/u8cats.c +++ b/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/src/c/matrixOperations/determ/i16determa.c b/src/c/matrixOperations/determ/i16determa.c index a118455..97ec948 100644 --- a/src/c/matrixOperations/determ/i16determa.c +++ b/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/src/c/matrixOperations/determ/i8determa.c b/src/c/matrixOperations/determ/i8determa.c index 9693fe6..cf436a0 100644 --- a/src/c/matrixOperations/determ/i8determa.c +++ b/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/src/c/matrixOperations/determ/u16determa.c b/src/c/matrixOperations/determ/u16determa.c index 480d1ed..5e859d4 100644 --- a/src/c/matrixOperations/determ/u16determa.c +++ b/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/src/c/matrixOperations/determ/u8determa.c b/src/c/matrixOperations/determ/u8determa.c index 3fb18d5..f226af2 100644 --- a/src/c/matrixOperations/determ/u8determa.c +++ b/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/src/c/matrixOperations/diag/ddiaga.c b/src/c/matrixOperations/diag/ddiaga.c index 20f2039..983e8ff 100644 --- a/src/c/matrixOperations/diag/ddiaga.c +++ b/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/src/c/matrixOperations/diag/ddiagexa.c b/src/c/matrixOperations/diag/ddiagexa.c index 191c131..0e6c314 100644 --- a/src/c/matrixOperations/diag/ddiagexa.c +++ b/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/src/c/matrixOperations/diag/ddiagexs.c b/src/c/matrixOperations/diag/ddiagexs.c index fb007b5..4e9ca5e 100644 --- a/src/c/matrixOperations/diag/ddiagexs.c +++ b/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/src/c/matrixOperations/diag/ddiagina.c b/src/c/matrixOperations/diag/ddiagina.c index de19211..243aba1 100644 --- a/src/c/matrixOperations/diag/ddiagina.c +++ b/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/src/c/matrixOperations/diag/ddiagins.c b/src/c/matrixOperations/diag/ddiagins.c index d1fc527..09cc921 100644 --- a/src/c/matrixOperations/diag/ddiagins.c +++ b/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/src/c/matrixOperations/diag/ddiags.c b/src/c/matrixOperations/diag/ddiags.c index b43e5d6..bab2186 100644 --- a/src/c/matrixOperations/diag/ddiags.c +++ b/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/src/c/matrixOperations/diag/i16diaga.c b/src/c/matrixOperations/diag/i16diaga.c index b65822b..6078ada 100644 --- a/src/c/matrixOperations/diag/i16diaga.c +++ b/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/src/c/matrixOperations/diag/i16diagexa.c b/src/c/matrixOperations/diag/i16diagexa.c index 7e85c91..b51e0ae 100644 --- a/src/c/matrixOperations/diag/i16diagexa.c +++ b/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/src/c/matrixOperations/diag/i16diagexs.c b/src/c/matrixOperations/diag/i16diagexs.c index 87536ce..1071c50 100644 --- a/src/c/matrixOperations/diag/i16diagexs.c +++ b/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/src/c/matrixOperations/diag/i16diagina.c b/src/c/matrixOperations/diag/i16diagina.c index 8a86c23..a785003 100644 --- a/src/c/matrixOperations/diag/i16diagina.c +++ b/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/src/c/matrixOperations/diag/i16diagins.c b/src/c/matrixOperations/diag/i16diagins.c index f0d46eb..f7f8612 100644 --- a/src/c/matrixOperations/diag/i16diagins.c +++ b/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/src/c/matrixOperations/diag/i16diags.c b/src/c/matrixOperations/diag/i16diags.c index b08657f..d6d89f5 100644 --- a/src/c/matrixOperations/diag/i16diags.c +++ b/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/src/c/matrixOperations/diag/i8diaga.c b/src/c/matrixOperations/diag/i8diaga.c index 50ba76e..d432227 100644 --- a/src/c/matrixOperations/diag/i8diaga.c +++ b/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/src/c/matrixOperations/diag/i8diagexa.c b/src/c/matrixOperations/diag/i8diagexa.c index 56fab85..8d5513b 100644 --- a/src/c/matrixOperations/diag/i8diagexa.c +++ b/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/src/c/matrixOperations/diag/i8diagexs.c b/src/c/matrixOperations/diag/i8diagexs.c index 6aa7604..5d93661 100644 --- a/src/c/matrixOperations/diag/i8diagexs.c +++ b/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/src/c/matrixOperations/diag/i8diagina.c b/src/c/matrixOperations/diag/i8diagina.c index eb005bf..b1bd1ba 100644 --- a/src/c/matrixOperations/diag/i8diagina.c +++ b/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/src/c/matrixOperations/diag/i8diagins.c b/src/c/matrixOperations/diag/i8diagins.c index adb7eb9..dc6df97 100644 --- a/src/c/matrixOperations/diag/i8diagins.c +++ b/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/src/c/matrixOperations/diag/i8diags.c b/src/c/matrixOperations/diag/i8diags.c index d4e4489..55eea1b 100644 --- a/src/c/matrixOperations/diag/i8diags.c +++ b/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/src/c/matrixOperations/diag/u16diaga.c b/src/c/matrixOperations/diag/u16diaga.c index 18ff1bf..ee27e53 100644 --- a/src/c/matrixOperations/diag/u16diaga.c +++ b/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/src/c/matrixOperations/diag/u16diagexa.c b/src/c/matrixOperations/diag/u16diagexa.c index da2088c..ac996b7 100644 --- a/src/c/matrixOperations/diag/u16diagexa.c +++ b/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/src/c/matrixOperations/diag/u16diagexs.c b/src/c/matrixOperations/diag/u16diagexs.c index c32849e..dd04c5d 100644 --- a/src/c/matrixOperations/diag/u16diagexs.c +++ b/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/src/c/matrixOperations/diag/u16diagina.c b/src/c/matrixOperations/diag/u16diagina.c index 02b52ec..97f5139 100644 --- a/src/c/matrixOperations/diag/u16diagina.c +++ b/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/src/c/matrixOperations/diag/u16diagins.c b/src/c/matrixOperations/diag/u16diagins.c index 84cfcb2..65590bd 100644 --- a/src/c/matrixOperations/diag/u16diagins.c +++ b/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/src/c/matrixOperations/diag/u16diags.c b/src/c/matrixOperations/diag/u16diags.c index 0f463b0..1e9b451 100644 --- a/src/c/matrixOperations/diag/u16diags.c +++ b/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/src/c/matrixOperations/diag/u8diaga.c b/src/c/matrixOperations/diag/u8diaga.c index 079e482..e6641af 100644 --- a/src/c/matrixOperations/diag/u8diaga.c +++ b/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/src/c/matrixOperations/diag/u8diagexa.c b/src/c/matrixOperations/diag/u8diagexa.c index 258e10b..17b873b 100644 --- a/src/c/matrixOperations/diag/u8diagexa.c +++ b/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/src/c/matrixOperations/diag/u8diagexs.c b/src/c/matrixOperations/diag/u8diagexs.c index fbb2ef3..fb800fd 100644 --- a/src/c/matrixOperations/diag/u8diagexs.c +++ b/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/src/c/matrixOperations/diag/u8diagina.c b/src/c/matrixOperations/diag/u8diagina.c index c9bf12e..178d0f6 100644 --- a/src/c/matrixOperations/diag/u8diagina.c +++ b/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/src/c/matrixOperations/diag/u8diagins.c b/src/c/matrixOperations/diag/u8diagins.c index f276595..787cd64 100644 --- a/src/c/matrixOperations/diag/u8diagins.c +++ b/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/src/c/matrixOperations/diag/u8diags.c b/src/c/matrixOperations/diag/u8diags.c index 97d2e51..d3d2e46 100644 --- a/src/c/matrixOperations/diag/u8diags.c +++ b/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/src/c/matrixOperations/division/i16ldivma.c b/src/c/matrixOperations/division/i16ldivma.c index e5a134d..decb8f3 100644 --- a/src/c/matrixOperations/division/i16ldivma.c +++ b/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/src/c/matrixOperations/division/i16rdivma.c b/src/c/matrixOperations/division/i16rdivma.c index 21f6cc9..7cdebe5 100644 --- a/src/c/matrixOperations/division/i16rdivma.c +++ b/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/src/c/matrixOperations/division/i16rdivv.c b/src/c/matrixOperations/division/i16rdivv.c index 72d3bd6..ebbdf58 100644 --- a/src/c/matrixOperations/division/i16rdivv.c +++ b/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/src/c/matrixOperations/division/i8ldivma.c b/src/c/matrixOperations/division/i8ldivma.c index 85271c6..d7ca2fd 100644 --- a/src/c/matrixOperations/division/i8ldivma.c +++ b/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/src/c/matrixOperations/division/i8rdivma.c b/src/c/matrixOperations/division/i8rdivma.c index 5095d9c..0048c03 100644 --- a/src/c/matrixOperations/division/i8rdivma.c +++ b/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/src/c/matrixOperations/division/i8rdivv.c b/src/c/matrixOperations/division/i8rdivv.c index 04c6c49..7d262af 100644 --- a/src/c/matrixOperations/division/i8rdivv.c +++ b/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/src/c/matrixOperations/division/u16ldivma.c b/src/c/matrixOperations/division/u16ldivma.c index fde268f..d7901f3 100644 --- a/src/c/matrixOperations/division/u16ldivma.c +++ b/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/src/c/matrixOperations/division/u16rdivma.c b/src/c/matrixOperations/division/u16rdivma.c index a77db45..d664207 100644 --- a/src/c/matrixOperations/division/u16rdivma.c +++ b/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/src/c/matrixOperations/division/u16rdivv.c b/src/c/matrixOperations/division/u16rdivv.c index 9fc292c..66dc214 100644 --- a/src/c/matrixOperations/division/u16rdivv.c +++ b/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/src/c/matrixOperations/division/u8ldivma.c b/src/c/matrixOperations/division/u8ldivma.c index a046fb4..ce491b4 100644 --- a/src/c/matrixOperations/division/u8ldivma.c +++ b/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/src/c/matrixOperations/division/u8rdivma.c b/src/c/matrixOperations/division/u8rdivma.c index 478f6ac..6ff4b17 100644 --- a/src/c/matrixOperations/division/u8rdivma.c +++ b/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/src/c/matrixOperations/division/u8rdivv.c b/src/c/matrixOperations/division/u8rdivv.c index 53ef809..92e5762 100644 --- a/src/c/matrixOperations/division/u8rdivv.c +++ b/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/src/c/matrixOperations/eye/i16eyea.c b/src/c/matrixOperations/eye/i16eyea.c index 90d7fe7..a769061 100644 --- a/src/c/matrixOperations/eye/i16eyea.c +++ b/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/src/c/matrixOperations/eye/i8eyea.c b/src/c/matrixOperations/eye/i8eyea.c index e2fecca..d69ac05 100644 --- a/src/c/matrixOperations/eye/i8eyea.c +++ b/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/src/c/matrixOperations/eye/u16eyea.c b/src/c/matrixOperations/eye/u16eyea.c index 63c479f..bb01198 100644 --- a/src/c/matrixOperations/eye/u16eyea.c +++ b/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/src/c/matrixOperations/eye/u8eyea.c b/src/c/matrixOperations/eye/u8eyea.c index 8278303..018fc3c 100644 --- a/src/c/matrixOperations/eye/u8eyea.c +++ b/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/src/c/matrixOperations/includes/diag.h b/src/c/matrixOperations/includes/diag.h index b255c4b..5f97923 100644 --- a/src/c/matrixOperations/includes/diag.h +++ b/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/src/c/matrixOperations/interfaces/int_cat.h b/src/c/matrixOperations/interfaces/int_cat.h index 7b3107a..db80bec 100644 --- a/src/c/matrixOperations/interfaces/int_cat.h +++ b/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/src/c/matrixOperations/interfaces/int_diag.h b/src/c/matrixOperations/interfaces/int_diag.h index 4d6553c..339831b 100644 --- a/src/c/matrixOperations/interfaces/int_diag.h +++ b/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/src/c/matrixOperations/inversion/i16inverma.c b/src/c/matrixOperations/inversion/i16inverma.c index a6b1c08..0dd1850 100644 --- a/src/c/matrixOperations/inversion/i16inverma.c +++ b/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/src/c/matrixOperations/inversion/i8inverma.c b/src/c/matrixOperations/inversion/i8inverma.c index 24fb920..66c66e2 100644 --- a/src/c/matrixOperations/inversion/i8inverma.c +++ b/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/src/c/matrixOperations/inversion/u16inverma.c b/src/c/matrixOperations/inversion/u16inverma.c index a27182d..917c9af 100644 --- a/src/c/matrixOperations/inversion/u16inverma.c +++ b/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/src/c/matrixOperations/inversion/u8inverma.c b/src/c/matrixOperations/inversion/u8inverma.c index 4e8a97c..2fab659 100644 --- a/src/c/matrixOperations/inversion/u8inverma.c +++ b/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/src/c/matrixOperations/magnitude/i16magna.c b/src/c/matrixOperations/magnitude/i16magna.c index 884a278..193d237 100644 --- a/src/c/matrixOperations/magnitude/i16magna.c +++ b/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/src/c/matrixOperations/magnitude/i16magns.c b/src/c/matrixOperations/magnitude/i16magns.c index d5deb28..44800ca 100644 --- a/src/c/matrixOperations/magnitude/i16magns.c +++ b/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/src/c/matrixOperations/magnitude/i8magna.c b/src/c/matrixOperations/magnitude/i8magna.c index 1a8519a..8de96b7 100644 --- a/src/c/matrixOperations/magnitude/i8magna.c +++ b/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/src/c/matrixOperations/magnitude/i8magns.c b/src/c/matrixOperations/magnitude/i8magns.c index 1703505..a13ae3d 100644 --- a/src/c/matrixOperations/magnitude/i8magns.c +++ b/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/src/c/matrixOperations/multiplication/i16mulma.c b/src/c/matrixOperations/multiplication/i16mulma.c index b6b882d..ba46e8e 100644 --- a/src/c/matrixOperations/multiplication/i16mulma.c +++ b/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/src/c/matrixOperations/multiplication/i8mulma.c b/src/c/matrixOperations/multiplication/i8mulma.c index 4fdb203..88f192d 100644 --- a/src/c/matrixOperations/multiplication/i8mulma.c +++ b/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/src/c/matrixOperations/multiplication/u16mulma.c b/src/c/matrixOperations/multiplication/u16mulma.c index 11f88d8..b15d844 100644 --- a/src/c/matrixOperations/multiplication/u16mulma.c +++ b/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/src/c/matrixOperations/multiplication/u8mulma.c b/src/c/matrixOperations/multiplication/u8mulma.c index 3660249..fa4f851 100644 --- a/src/c/matrixOperations/multiplication/u8mulma.c +++ b/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/src/c/matrixOperations/ones/i16onesa.c b/src/c/matrixOperations/ones/i16onesa.c index b7949de..d8dee19 100644 --- a/src/c/matrixOperations/ones/i16onesa.c +++ b/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/src/c/matrixOperations/ones/i8onesa.c b/src/c/matrixOperations/ones/i8onesa.c index 7c17912..11b48bf 100644 --- a/src/c/matrixOperations/ones/i8onesa.c +++ b/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/src/c/matrixOperations/ones/u16onesa.c b/src/c/matrixOperations/ones/u16onesa.c index 852ceef..e91b5a7 100644 --- a/src/c/matrixOperations/ones/u16onesa.c +++ b/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/src/c/matrixOperations/ones/u8onesa.c b/src/c/matrixOperations/ones/u8onesa.c index 7918a96..be9a1bf 100644 --- a/src/c/matrixOperations/ones/u8onesa.c +++ b/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/src/c/matrixOperations/trace/i16tracea.c b/src/c/matrixOperations/trace/i16tracea.c index 6a3d6a8..3aeec4e 100644 --- a/src/c/matrixOperations/trace/i16tracea.c +++ b/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/src/c/matrixOperations/trace/i8tracea.c b/src/c/matrixOperations/trace/i8tracea.c index 88a1c46..9158ba4 100644 --- a/src/c/matrixOperations/trace/i8tracea.c +++ b/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/src/c/matrixOperations/trace/u16tracea.c b/src/c/matrixOperations/trace/u16tracea.c index 3cf9943..2a85fa3 100644 --- a/src/c/matrixOperations/trace/u16tracea.c +++ b/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/src/c/matrixOperations/trace/u8tracea.c b/src/c/matrixOperations/trace/u8tracea.c index 97e73e2..2823f6d 100644 --- a/src/c/matrixOperations/trace/u8tracea.c +++ b/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/src/c/matrixOperations/transpose/i16transposea.c b/src/c/matrixOperations/transpose/i16transposea.c index 366de06..e370c63 100644 --- a/src/c/matrixOperations/transpose/i16transposea.c +++ b/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/src/c/matrixOperations/transpose/i8transposea.c b/src/c/matrixOperations/transpose/i8transposea.c index 20d451a..a05ee06 100644 --- a/src/c/matrixOperations/transpose/i8transposea.c +++ b/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/src/c/matrixOperations/transpose/u16transposea.c b/src/c/matrixOperations/transpose/u16transposea.c index 33b35ec..8bf659d 100644 --- a/src/c/matrixOperations/transpose/u16transposea.c +++ b/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/src/c/matrixOperations/transpose/u8transposea.c b/src/c/matrixOperations/transpose/u8transposea.c index 2d0dd74..54b5332 100644 --- a/src/c/matrixOperations/transpose/u8transposea.c +++ b/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/src/c/matrixOperations/zeros/i16zerosa.c b/src/c/matrixOperations/zeros/i16zerosa.c index f1ed904..13ff62b 100644 --- a/src/c/matrixOperations/zeros/i16zerosa.c +++ b/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/src/c/matrixOperations/zeros/i8zerosa.c b/src/c/matrixOperations/zeros/i8zerosa.c index e22e06a..f8808c0 100644 --- a/src/c/matrixOperations/zeros/i8zerosa.c +++ b/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/src/c/matrixOperations/zeros/u16zerosa.c b/src/c/matrixOperations/zeros/u16zerosa.c index 6c98d2f..3db1ac5 100644 --- a/src/c/matrixOperations/zeros/u16zerosa.c +++ b/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/src/c/matrixOperations/zeros/u8zerosa.c b/src/c/matrixOperations/zeros/u8zerosa.c index 4203614..ee239a6 100644 --- a/src/c/matrixOperations/zeros/u8zerosa.c +++ b/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/src/c/operations/addition/i16adda.c b/src/c/operations/addition/i16adda.c index 8c28a98..db85675 100644 --- a/src/c/operations/addition/i16adda.c +++ b/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/src/c/operations/addition/i16adds.c b/src/c/operations/addition/i16adds.c index ea36a91..88c927d 100644 --- a/src/c/operations/addition/i16adds.c +++ b/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/src/c/operations/addition/i8adda.c b/src/c/operations/addition/i8adda.c index 2417bda..5e556d3 100644 --- a/src/c/operations/addition/i8adda.c +++ b/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/src/c/operations/addition/i8adds.c b/src/c/operations/addition/i8adds.c index aee4045..0520912 100644 --- a/src/c/operations/addition/i8adds.c +++ b/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/src/c/operations/addition/u16adda.c b/src/c/operations/addition/u16adda.c index 884e099..3884aa3 100644 --- a/src/c/operations/addition/u16adda.c +++ b/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/src/c/operations/addition/u16adds.c b/src/c/operations/addition/u16adds.c index f52dd05..2d49e90 100644 --- a/src/c/operations/addition/u16adds.c +++ b/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/src/c/operations/addition/u8adda.c b/src/c/operations/addition/u8adda.c index 4c195b0..01c7608 100644 --- a/src/c/operations/addition/u8adda.c +++ b/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/src/c/operations/addition/u8adds.c b/src/c/operations/addition/u8adds.c index b729c3b..ad25823 100644 --- a/src/c/operations/addition/u8adds.c +++ b/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/src/c/operations/division/i16ldiva.c b/src/c/operations/division/i16ldiva.c index a89aa69..4106acf 100644 --- a/src/c/operations/division/i16ldiva.c +++ b/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/src/c/operations/division/i16ldivs.c b/src/c/operations/division/i16ldivs.c index b470b16..d807e49 100644 --- a/src/c/operations/division/i16ldivs.c +++ b/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/src/c/operations/division/i16rdiva.c b/src/c/operations/division/i16rdiva.c index ad7672c..149e8ef 100644 --- a/src/c/operations/division/i16rdiva.c +++ b/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/src/c/operations/division/i16rdivs.c b/src/c/operations/division/i16rdivs.c index e4d5482..418e570 100644 --- a/src/c/operations/division/i16rdivs.c +++ b/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/src/c/operations/division/i8ldiva.c b/src/c/operations/division/i8ldiva.c index 0f47117..b7e0a7b 100644 --- a/src/c/operations/division/i8ldiva.c +++ b/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/src/c/operations/division/i8ldivs.c b/src/c/operations/division/i8ldivs.c index 6bf0d26..65b2ff8 100644 --- a/src/c/operations/division/i8ldivs.c +++ b/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/src/c/operations/division/i8rdiva.c b/src/c/operations/division/i8rdiva.c index 0e6b217..f3be2a0 100644 --- a/src/c/operations/division/i8rdiva.c +++ b/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/src/c/operations/division/i8rdivs.c b/src/c/operations/division/i8rdivs.c index db8062f..54e3955 100644 --- a/src/c/operations/division/i8rdivs.c +++ b/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/src/c/operations/division/u16ldiva.c b/src/c/operations/division/u16ldiva.c index 55d3222..bc24ab0 100644 --- a/src/c/operations/division/u16ldiva.c +++ b/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/src/c/operations/division/u16ldivs.c b/src/c/operations/division/u16ldivs.c index 5383ebf..b1d8518 100644 --- a/src/c/operations/division/u16ldivs.c +++ b/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/src/c/operations/division/u16rdiva.c b/src/c/operations/division/u16rdiva.c index eb21be1..a13decc 100644 --- a/src/c/operations/division/u16rdiva.c +++ b/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/src/c/operations/division/u16rdivs.c b/src/c/operations/division/u16rdivs.c index 68b998f..d55c07f 100644 --- a/src/c/operations/division/u16rdivs.c +++ b/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/src/c/operations/division/u8ldiva.c b/src/c/operations/division/u8ldiva.c index 76e59ad..8dc948f 100644 --- a/src/c/operations/division/u8ldiva.c +++ b/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/src/c/operations/division/u8ldivs.c b/src/c/operations/division/u8ldivs.c index 0694d5f..bf16943 100644 --- a/src/c/operations/division/u8ldivs.c +++ b/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/src/c/operations/division/u8rdiva.c b/src/c/operations/division/u8rdiva.c index d1eb5c4..7ed7f9c 100644 --- a/src/c/operations/division/u8rdiva.c +++ b/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/src/c/operations/division/u8rdivs.c b/src/c/operations/division/u8rdivs.c index e6364a8..9d04ebf 100644 --- a/src/c/operations/division/u8rdivs.c +++ b/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/src/c/operations/multiplication/i16mula.c b/src/c/operations/multiplication/i16mula.c index b16378d..bffa107 100644 --- a/src/c/operations/multiplication/i16mula.c +++ b/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/src/c/operations/multiplication/i16muls.c b/src/c/operations/multiplication/i16muls.c index 687c217..4aaa5d1 100644 --- a/src/c/operations/multiplication/i16muls.c +++ b/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/src/c/operations/multiplication/i16mulv.c b/src/c/operations/multiplication/i16mulv.c index 37569d8..3f3cc8d 100644 --- a/src/c/operations/multiplication/i16mulv.c +++ b/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/src/c/operations/multiplication/i8mula.c b/src/c/operations/multiplication/i8mula.c index 4d27d62..c5c6114 100644 --- a/src/c/operations/multiplication/i8mula.c +++ b/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/src/c/operations/multiplication/i8muls.c b/src/c/operations/multiplication/i8muls.c index a19bd7b..d656620 100644 --- a/src/c/operations/multiplication/i8muls.c +++ b/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/src/c/operations/multiplication/i8mulv.c b/src/c/operations/multiplication/i8mulv.c index a617ceb..6dc1ec4 100644 --- a/src/c/operations/multiplication/i8mulv.c +++ b/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/src/c/operations/multiplication/u16mula.c b/src/c/operations/multiplication/u16mula.c index b6563d2..5be6e64 100644 --- a/src/c/operations/multiplication/u16mula.c +++ b/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/src/c/operations/multiplication/u16muls.c b/src/c/operations/multiplication/u16muls.c index 7b202d5..10380c0 100644 --- a/src/c/operations/multiplication/u16muls.c +++ b/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/src/c/operations/multiplication/u16mulv.c b/src/c/operations/multiplication/u16mulv.c index ae7f9fb..5cd9805 100644 --- a/src/c/operations/multiplication/u16mulv.c +++ b/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/src/c/operations/multiplication/u8mula.c b/src/c/operations/multiplication/u8mula.c index ff76fa7..7ff2dd0 100644 --- a/src/c/operations/multiplication/u8mula.c +++ b/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/src/c/operations/multiplication/u8muls.c b/src/c/operations/multiplication/u8muls.c index bc7d80a..7acf5b5 100644 --- a/src/c/operations/multiplication/u8muls.c +++ b/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/src/c/operations/multiplication/u8mulv.c b/src/c/operations/multiplication/u8mulv.c index 8681659..9ae063e 100644 --- a/src/c/operations/multiplication/u8mulv.c +++ b/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/src/c/operations/subtraction/i16diffa.c b/src/c/operations/subtraction/i16diffa.c index ca722af..5a3c78c 100644 --- a/src/c/operations/subtraction/i16diffa.c +++ b/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/src/c/operations/subtraction/i16diffs.c b/src/c/operations/subtraction/i16diffs.c index 6ca2e52..c73bab0 100644 --- a/src/c/operations/subtraction/i16diffs.c +++ b/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/src/c/operations/subtraction/i8diffa.c b/src/c/operations/subtraction/i8diffa.c index ec966bf..8eae759 100644 --- a/src/c/operations/subtraction/i8diffa.c +++ b/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/src/c/operations/subtraction/i8diffs.c b/src/c/operations/subtraction/i8diffs.c index bbc9a1a..88eaf4d 100644 --- a/src/c/operations/subtraction/i8diffs.c +++ b/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/src/c/operations/subtraction/u16diffa.c b/src/c/operations/subtraction/u16diffa.c index 7c216bb..e9a3049 100644 --- a/src/c/operations/subtraction/u16diffa.c +++ b/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/src/c/operations/subtraction/u16diffs.c b/src/c/operations/subtraction/u16diffs.c index bd52d66..baf4e07 100644 --- a/src/c/operations/subtraction/u16diffs.c +++ b/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/src/c/operations/subtraction/u8diffa.c b/src/c/operations/subtraction/u8diffa.c index 42c06f7..c1512e9 100644 --- a/src/c/operations/subtraction/u8diffa.c +++ b/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/src/c/operations/subtraction/u8diffs.c b/src/c/operations/subtraction/u8diffs.c index bc9beac..f71192a 100644 --- a/src/c/operations/subtraction/u8diffs.c +++ b/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/src/c/scilab-arduino/cmd_analog_in/u8cmd_analog_ins.c b/src/c/scilab-arduino/cmd_analog_in/u8cmd_analog_ins.c index 29e6c0f..42005d1 100644 --- a/src/c/scilab-arduino/cmd_analog_in/u8cmd_analog_ins.c +++ b/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/src/c/scilab-arduino/cmd_analog_out/u8cmd_analog_outs.c b/src/c/scilab-arduino/cmd_analog_out/u8cmd_analog_outs.c index 07e1805..a5b8513 100644 --- a/src/c/scilab-arduino/cmd_analog_out/u8cmd_analog_outs.c +++ b/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/src/c/scilab-arduino/cmd_dcmotor_run/u8cmd_dcmotor_runs.c b/src/c/scilab-arduino/cmd_dcmotor_run/u8cmd_dcmotor_runs.c index ff2f6e5..6e1c2ca 100644 --- a/src/c/scilab-arduino/cmd_dcmotor_run/u8cmd_dcmotor_runs.c +++ b/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/src/c/scilab-arduino/cmd_dcmotor_setup/u8cmd_dcmotor_setups.c b/src/c/scilab-arduino/cmd_dcmotor_setup/u8cmd_dcmotor_setups.c index 194074e..389f911 100644 --- a/src/c/scilab-arduino/cmd_dcmotor_setup/u8cmd_dcmotor_setups.c +++ b/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/src/c/scilab-arduino/cmd_digital_in/u8cmd_digital_ins.c b/src/c/scilab-arduino/cmd_digital_in/u8cmd_digital_ins.c index 129db1a..da5ca78 100644 --- a/src/c/scilab-arduino/cmd_digital_in/u8cmd_digital_ins.c +++ b/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/src/c/scilab-arduino/cmd_digital_out/u8cmd_digital_outs.c b/src/c/scilab-arduino/cmd_digital_out/u8cmd_digital_outs.c index 58e7a85..64af7b5 100644 --- a/src/c/scilab-arduino/cmd_digital_out/u8cmd_digital_outs.c +++ b/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/src/c/scilab-arduino/cmd_servo_attach/u8cmd_servo_attachs.cpp b/src/c/scilab-arduino/cmd_servo_attach/u8cmd_servo_attachs.cpp index ae2c68c..b4322c7 100644 --- a/src/c/scilab-arduino/cmd_servo_attach/u8cmd_servo_attachs.cpp +++ b/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/src/c/scilab-arduino/cmd_servo_detach/u8cmd_servo_detachs.cpp b/src/c/scilab-arduino/cmd_servo_detach/u8cmd_servo_detachs.cpp index c8c5beb..08ea03f 100644 --- a/src/c/scilab-arduino/cmd_servo_detach/u8cmd_servo_detachs.cpp +++ b/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/src/c/scilab-arduino/cmd_servo_move/u8cmd_servo_moves.cpp b/src/c/scilab-arduino/cmd_servo_move/u8cmd_servo_moves.cpp index 94f3563..c7c6fa7 100644 --- a/src/c/scilab-arduino/cmd_servo_move/u8cmd_servo_moves.cpp +++ b/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/src/c/scilab-arduino/default_files/sci2c_arduino.ino b/src/c/scilab-arduino/default_files/sci2c_arduino.ino index 2b30456..df28950 100644 --- a/src/c/scilab-arduino/default_files/sci2c_arduino.ino +++ b/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/src/c/scilab-arduino/includes/cmd_analog_in.h b/src/c/scilab-arduino/includes/cmd_analog_in.h index 1ab9f3a..0c18656 100644 --- a/src/c/scilab-arduino/includes/cmd_analog_in.h +++ b/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/src/c/scilab-arduino/includes/cmd_analog_out.h b/src/c/scilab-arduino/includes/cmd_analog_out.h index 5f9e527..54e51f5 100644 --- a/src/c/scilab-arduino/includes/cmd_analog_out.h +++ b/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/src/c/scilab-arduino/includes/cmd_dcmotor_run.h b/src/c/scilab-arduino/includes/cmd_dcmotor_run.h index 4bc1ccc..2b69c99 100644 --- a/src/c/scilab-arduino/includes/cmd_dcmotor_run.h +++ b/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/src/c/scilab-arduino/includes/cmd_dcmotor_setup.h b/src/c/scilab-arduino/includes/cmd_dcmotor_setup.h index e7de474..cecd465 100644 --- a/src/c/scilab-arduino/includes/cmd_dcmotor_setup.h +++ b/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/src/c/scilab-arduino/includes/cmd_digital_in.h b/src/c/scilab-arduino/includes/cmd_digital_in.h index 96fd24b..51226a6 100644 --- a/src/c/scilab-arduino/includes/cmd_digital_in.h +++ b/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/src/c/scilab-arduino/includes/cmd_digital_out.h b/src/c/scilab-arduino/includes/cmd_digital_out.h index a0150ce..1e837e5 100644 --- a/src/c/scilab-arduino/includes/cmd_digital_out.h +++ b/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/src/c/scilab-arduino/includes/cmd_servo_attach.h b/src/c/scilab-arduino/includes/cmd_servo_attach.h index 8707833..12c2c01 100644 --- a/src/c/scilab-arduino/includes/cmd_servo_attach.h +++ b/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/src/c/scilab-arduino/includes/cmd_servo_detach.h b/src/c/scilab-arduino/includes/cmd_servo_detach.h index 6ac5e2b..daa5fd2 100644 --- a/src/c/scilab-arduino/includes/cmd_servo_detach.h +++ b/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/src/c/scilab-arduino/includes/cmd_servo_move.h b/src/c/scilab-arduino/includes/cmd_servo_move.h index 7f9bc0d..79c16b4 100644 --- a/src/c/scilab-arduino/includes/cmd_servo_move.h +++ b/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/src/c/scilab-arduino/includes/sleep.h b/src/c/scilab-arduino/includes/sleep.h index 8daab69..8763f5f 100644 --- a/src/c/scilab-arduino/includes/sleep.h +++ b/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/src/c/scilab-arduino/interfaces/int_cmd_analog_in.h b/src/c/scilab-arduino/interfaces/int_cmd_analog_in.h index 0df8fcb..7358509 100644 --- a/src/c/scilab-arduino/interfaces/int_cmd_analog_in.h +++ b/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/src/c/scilab-arduino/interfaces/int_cmd_analog_out.h b/src/c/scilab-arduino/interfaces/int_cmd_analog_out.h index 2410523..80ed7ab 100644 --- a/src/c/scilab-arduino/interfaces/int_cmd_analog_out.h +++ b/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/src/c/scilab-arduino/interfaces/int_cmd_dcmotor.h b/src/c/scilab-arduino/interfaces/int_cmd_dcmotor.h index 7f8db41..61e0d2e 100644 --- a/src/c/scilab-arduino/interfaces/int_cmd_dcmotor.h +++ b/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/src/c/scilab-arduino/interfaces/int_cmd_digital_in.h b/src/c/scilab-arduino/interfaces/int_cmd_digital_in.h index 04b773c..4e5e575 100644 --- a/src/c/scilab-arduino/interfaces/int_cmd_digital_in.h +++ b/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/src/c/scilab-arduino/interfaces/int_cmd_digital_out.h b/src/c/scilab-arduino/interfaces/int_cmd_digital_out.h index 009ff7d..92a92c6 100644 --- a/src/c/scilab-arduino/interfaces/int_cmd_digital_out.h +++ b/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/src/c/scilab-arduino/interfaces/int_cmd_servo.h b/src/c/scilab-arduino/interfaces/int_cmd_servo.h index 3b48273..a431fe1 100644 --- a/src/c/scilab-arduino/interfaces/int_cmd_servo.h +++ b/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/src/c/scilab-arduino/interfaces/int_sleep.h b/src/c/scilab-arduino/interfaces/int_sleep.h index a0d3545..f3a697f 100644 --- a/src/c/scilab-arduino/interfaces/int_sleep.h +++ b/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/src/c/scilab-arduino/sleep/u16sleeps.c b/src/c/scilab-arduino/sleep/u16sleeps.c index fc59ca8..88f8a66 100644 --- a/src/c/scilab-arduino/sleep/u16sleeps.c +++ b/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/src/c/statisticsFunctions/max/i16columnmaxa.c b/src/c/statisticsFunctions/max/i16columnmaxa.c index a3af3a4..87cc579 100644 --- a/src/c/statisticsFunctions/max/i16columnmaxa.c +++ b/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/src/c/statisticsFunctions/max/i16maxa.c b/src/c/statisticsFunctions/max/i16maxa.c index 515071d..b2eab34 100644 --- a/src/c/statisticsFunctions/max/i16maxa.c +++ b/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/src/c/statisticsFunctions/max/i16rowmaxa.c b/src/c/statisticsFunctions/max/i16rowmaxa.c index 317942e..46c4ae2 100644 --- a/src/c/statisticsFunctions/max/i16rowmaxa.c +++ b/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/src/c/statisticsFunctions/max/i8columnmaxa.c b/src/c/statisticsFunctions/max/i8columnmaxa.c index 0d46f78..6c7ea25 100644 --- a/src/c/statisticsFunctions/max/i8columnmaxa.c +++ b/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/src/c/statisticsFunctions/max/i8maxa.c b/src/c/statisticsFunctions/max/i8maxa.c index bccb857..d57b995 100644 --- a/src/c/statisticsFunctions/max/i8maxa.c +++ b/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/src/c/statisticsFunctions/max/i8rowmaxa.c b/src/c/statisticsFunctions/max/i8rowmaxa.c index 44ca17a..677c61c 100644 --- a/src/c/statisticsFunctions/max/i8rowmaxa.c +++ b/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/src/c/statisticsFunctions/max/u16columnmaxa.c b/src/c/statisticsFunctions/max/u16columnmaxa.c index 91f950d..5b4f423 100644 --- a/src/c/statisticsFunctions/max/u16columnmaxa.c +++ b/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/src/c/statisticsFunctions/max/u16maxa.c b/src/c/statisticsFunctions/max/u16maxa.c index 5c1b136..7c9078d 100644 --- a/src/c/statisticsFunctions/max/u16maxa.c +++ b/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/src/c/statisticsFunctions/max/u16rowmaxa.c b/src/c/statisticsFunctions/max/u16rowmaxa.c index c3b8917..eacbe84 100644 --- a/src/c/statisticsFunctions/max/u16rowmaxa.c +++ b/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/src/c/statisticsFunctions/max/u8columnmaxa.c b/src/c/statisticsFunctions/max/u8columnmaxa.c index fb90ae3..ac9bc08 100644 --- a/src/c/statisticsFunctions/max/u8columnmaxa.c +++ b/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/src/c/statisticsFunctions/max/u8maxa.c b/src/c/statisticsFunctions/max/u8maxa.c index 51e0dea..3f84af4 100644 --- a/src/c/statisticsFunctions/max/u8maxa.c +++ b/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/src/c/statisticsFunctions/max/u8rowmaxa.c b/src/c/statisticsFunctions/max/u8rowmaxa.c index 57c62f4..0ddae26 100644 --- a/src/c/statisticsFunctions/max/u8rowmaxa.c +++ b/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/src/c/statisticsFunctions/min/i16columnmina.c b/src/c/statisticsFunctions/min/i16columnmina.c index d38b7b5..64ec334 100644 --- a/src/c/statisticsFunctions/min/i16columnmina.c +++ b/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/src/c/statisticsFunctions/min/i16mina.c b/src/c/statisticsFunctions/min/i16mina.c index 6afdd5d..402b946 100644 --- a/src/c/statisticsFunctions/min/i16mina.c +++ b/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/src/c/statisticsFunctions/min/i16rowmina.c b/src/c/statisticsFunctions/min/i16rowmina.c index adeeaaa..51f575a 100644 --- a/src/c/statisticsFunctions/min/i16rowmina.c +++ b/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/src/c/statisticsFunctions/min/i8columnmina.c b/src/c/statisticsFunctions/min/i8columnmina.c index 1e97d62..041bc9b 100644 --- a/src/c/statisticsFunctions/min/i8columnmina.c +++ b/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/src/c/statisticsFunctions/min/i8mina.c b/src/c/statisticsFunctions/min/i8mina.c index 07e8a10..f7acac7 100644 --- a/src/c/statisticsFunctions/min/i8mina.c +++ b/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/src/c/statisticsFunctions/min/i8rowmina.c b/src/c/statisticsFunctions/min/i8rowmina.c index 4ce9edc..1c57382 100644 --- a/src/c/statisticsFunctions/min/i8rowmina.c +++ b/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/src/c/statisticsFunctions/min/u16columnmina.c b/src/c/statisticsFunctions/min/u16columnmina.c index 96c86a6..1df155d 100644 --- a/src/c/statisticsFunctions/min/u16columnmina.c +++ b/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/src/c/statisticsFunctions/min/u16mina.c b/src/c/statisticsFunctions/min/u16mina.c index 07c24ea..e09f044 100644 --- a/src/c/statisticsFunctions/min/u16mina.c +++ b/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/src/c/statisticsFunctions/min/u16rowmina.c b/src/c/statisticsFunctions/min/u16rowmina.c index 5180977..dc4ba08 100644 --- a/src/c/statisticsFunctions/min/u16rowmina.c +++ b/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/src/c/statisticsFunctions/min/u8columnmina.c b/src/c/statisticsFunctions/min/u8columnmina.c index 4ced096..07269fa 100644 --- a/src/c/statisticsFunctions/min/u8columnmina.c +++ b/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/src/c/statisticsFunctions/min/u8mina.c b/src/c/statisticsFunctions/min/u8mina.c index 16a7bb4..579d1b3 100644 --- a/src/c/statisticsFunctions/min/u8mina.c +++ b/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/src/c/statisticsFunctions/min/u8rowmina.c b/src/c/statisticsFunctions/min/u8rowmina.c index ddbe274..2f1de4f 100644 --- a/src/c/statisticsFunctions/min/u8rowmina.c +++ b/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/src/c/statisticsFunctions/sum/i16columnsuma.c b/src/c/statisticsFunctions/sum/i16columnsuma.c index c097be8..a34cea1 100644 --- a/src/c/statisticsFunctions/sum/i16columnsuma.c +++ b/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/src/c/statisticsFunctions/sum/i16rowsuma.c b/src/c/statisticsFunctions/sum/i16rowsuma.c index 2d9c312..03d8ff2 100644 --- a/src/c/statisticsFunctions/sum/i16rowsuma.c +++ b/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/src/c/statisticsFunctions/sum/i16suma.c b/src/c/statisticsFunctions/sum/i16suma.c index c1a392a..f5d0809 100644 --- a/src/c/statisticsFunctions/sum/i16suma.c +++ b/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/src/c/statisticsFunctions/sum/i8columnsuma.c b/src/c/statisticsFunctions/sum/i8columnsuma.c index 6550a18..bb79897 100644 --- a/src/c/statisticsFunctions/sum/i8columnsuma.c +++ b/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/src/c/statisticsFunctions/sum/i8rowsuma.c b/src/c/statisticsFunctions/sum/i8rowsuma.c index c975bae..2008f32 100644 --- a/src/c/statisticsFunctions/sum/i8rowsuma.c +++ b/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/src/c/statisticsFunctions/sum/i8suma.c b/src/c/statisticsFunctions/sum/i8suma.c index e413ede..468a98b 100644 --- a/src/c/statisticsFunctions/sum/i8suma.c +++ b/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/src/c/statisticsFunctions/sum/u16columnsuma.c b/src/c/statisticsFunctions/sum/u16columnsuma.c index 895fe04..82b0775 100644 --- a/src/c/statisticsFunctions/sum/u16columnsuma.c +++ b/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/src/c/statisticsFunctions/sum/u16rowsuma.c b/src/c/statisticsFunctions/sum/u16rowsuma.c index 3adb206..535e302 100644 --- a/src/c/statisticsFunctions/sum/u16rowsuma.c +++ b/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/src/c/statisticsFunctions/sum/u16suma.c b/src/c/statisticsFunctions/sum/u16suma.c index 0130f7a..5e5620c 100644 --- a/src/c/statisticsFunctions/sum/u16suma.c +++ b/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/src/c/statisticsFunctions/sum/u8columnsuma.c b/src/c/statisticsFunctions/sum/u8columnsuma.c index 5484b4a..f3e3041 100644 --- a/src/c/statisticsFunctions/sum/u8columnsuma.c +++ b/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/src/c/statisticsFunctions/sum/u8rowsuma.c b/src/c/statisticsFunctions/sum/u8rowsuma.c index 938af40..53a4944 100644 --- a/src/c/statisticsFunctions/sum/u8rowsuma.c +++ b/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/src/c/statisticsFunctions/sum/u8suma.c b/src/c/statisticsFunctions/sum/u8suma.c index cb80b33..e5febef 100644 --- a/src/c/statisticsFunctions/sum/u8suma.c +++ b/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/src/c/string/disp/i16dispa.c b/src/c/string/disp/i16dispa.c index a30bd89..424d066 100644 --- a/src/c/string/disp/i16dispa.c +++ b/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/src/c/string/disp/i16disps.c b/src/c/string/disp/i16disps.c index 92adab9..70edda7 100644 --- a/src/c/string/disp/i16disps.c +++ b/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/src/c/string/disp/i8dispa.c b/src/c/string/disp/i8dispa.c index 467a435..9acd967 100644 --- a/src/c/string/disp/i8dispa.c +++ b/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/src/c/string/disp/i8disps.c b/src/c/string/disp/i8disps.c index 68b5695..07cc6c4 100644 --- a/src/c/string/disp/i8disps.c +++ b/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/src/c/string/disp/u16dispa.c b/src/c/string/disp/u16dispa.c index 92df9dd..ad3685e 100644 --- a/src/c/string/disp/u16dispa.c +++ b/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/src/c/string/disp/u16disps.c b/src/c/string/disp/u16disps.c index d27ffb3..383dcfc 100644 --- a/src/c/string/disp/u16disps.c +++ b/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/src/c/string/disp/u8dispa.c b/src/c/string/disp/u8dispa.c index cca8e44..f242b5c 100644 --- a/src/c/string/disp/u8dispa.c +++ b/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/src/c/string/disp/u8disps.c b/src/c/string/disp/u8disps.c index 78b750a..2d3e78f 100644 --- a/src/c/string/disp/u8disps.c +++ b/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/src/c/string/string/i16stringa.c b/src/c/string/string/i16stringa.c index 28855df..f33f2cb 100644 --- a/src/c/string/string/i16stringa.c +++ b/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/src/c/string/string/i16strings.c b/src/c/string/string/i16strings.c index 2f21430..8644733 100644 --- a/src/c/string/string/i16strings.c +++ b/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/src/c/string/string/i8stringa.c b/src/c/string/string/i8stringa.c index cf436f0..37f4d8e 100644 --- a/src/c/string/string/i8stringa.c +++ b/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/src/c/string/string/i8strings.c b/src/c/string/string/i8strings.c index 926c0f4..3f3c9e8 100644 --- a/src/c/string/string/i8strings.c +++ b/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/src/c/string/string/u16stringa.c b/src/c/string/string/u16stringa.c index ee5d1b3..ef6a0a9 100644 --- a/src/c/string/string/u16stringa.c +++ b/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/src/c/string/string/u16strings.c b/src/c/string/string/u16strings.c index d2854c4..f09ed97 100644 --- a/src/c/string/string/u16strings.c +++ b/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/src/c/string/string/u8stringa.c b/src/c/string/string/u8stringa.c index 4546823..d605537 100644 --- a/src/c/string/string/u8stringa.c +++ b/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/src/c/string/string/u8strings.c b/src/c/string/string/u8strings.c index 38bf670..07d07f3 100644 --- a/src/c/string/string/u8strings.c +++ b/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/src/c/hardware/rasberrypi/libraries/wiringPi/ads1115.h b/thirdparty/raspberrypi/includes/ads1115.h index 5c91735..5c91735 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/ads1115.h +++ b/thirdparty/raspberrypi/includes/ads1115.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/drcSerial.h b/thirdparty/raspberrypi/includes/drcSerial.h index 29e988e..29e988e 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/drcSerial.h +++ b/thirdparty/raspberrypi/includes/drcSerial.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/max31855.h b/thirdparty/raspberrypi/includes/max31855.h index 385c4bd..385c4bd 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/max31855.h +++ b/thirdparty/raspberrypi/includes/max31855.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/max5322.h b/thirdparty/raspberrypi/includes/max5322.h index a217cf8..a217cf8 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/max5322.h +++ b/thirdparty/raspberrypi/includes/max5322.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23008.h b/thirdparty/raspberrypi/includes/mcp23008.h index e9299a8..e9299a8 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23008.h +++ b/thirdparty/raspberrypi/includes/mcp23008.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23016.h b/thirdparty/raspberrypi/includes/mcp23016.h index f9b5cc5..f9b5cc5 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23016.h +++ b/thirdparty/raspberrypi/includes/mcp23016.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23016reg.h b/thirdparty/raspberrypi/includes/mcp23016reg.h index 9aea92d..9aea92d 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23016reg.h +++ b/thirdparty/raspberrypi/includes/mcp23016reg.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23017.h b/thirdparty/raspberrypi/includes/mcp23017.h index 79b4d7b..79b4d7b 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23017.h +++ b/thirdparty/raspberrypi/includes/mcp23017.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23s08.h b/thirdparty/raspberrypi/includes/mcp23s08.h index ebf93d1..ebf93d1 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23s08.h +++ b/thirdparty/raspberrypi/includes/mcp23s08.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23s17.h b/thirdparty/raspberrypi/includes/mcp23s17.h index 3b2a808..3b2a808 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23s17.h +++ b/thirdparty/raspberrypi/includes/mcp23s17.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23x08.h b/thirdparty/raspberrypi/includes/mcp23x08.h index c4e6b27..c4e6b27 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23x08.h +++ b/thirdparty/raspberrypi/includes/mcp23x08.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23x0817.h b/thirdparty/raspberrypi/includes/mcp23x0817.h index 58bc038..58bc038 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp23x0817.h +++ b/thirdparty/raspberrypi/includes/mcp23x0817.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3002.h b/thirdparty/raspberrypi/includes/mcp3002.h index 0cd727f..0cd727f 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3002.h +++ b/thirdparty/raspberrypi/includes/mcp3002.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3004.h b/thirdparty/raspberrypi/includes/mcp3004.h index a07c0bf..a07c0bf 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3004.h +++ b/thirdparty/raspberrypi/includes/mcp3004.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3422.h b/thirdparty/raspberrypi/includes/mcp3422.h index 72647d4..72647d4 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp3422.h +++ b/thirdparty/raspberrypi/includes/mcp3422.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp4802.h b/thirdparty/raspberrypi/includes/mcp4802.h index effa024..effa024 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/mcp4802.h +++ b/thirdparty/raspberrypi/includes/mcp4802.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/calib3d.hpp b/thirdparty/raspberrypi/includes/opencv2/calib3d.hpp index 7356c15..7356c15 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/calib3d.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/calib3d.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/calib3d/calib3d.hpp b/thirdparty/raspberrypi/includes/opencv2/calib3d/calib3d.hpp index 5e9cde8..5e9cde8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/calib3d/calib3d.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/calib3d/calib3d.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/contrib.hpp b/thirdparty/raspberrypi/includes/opencv2/contrib/contrib.hpp index d587942..d587942 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/contrib.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/contrib/contrib.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/detection_based_tracker.hpp b/thirdparty/raspberrypi/includes/opencv2/contrib/detection_based_tracker.hpp index 56aa1cc..56aa1cc 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/detection_based_tracker.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/contrib/detection_based_tracker.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/hybridtracker.hpp b/thirdparty/raspberrypi/includes/opencv2/contrib/hybridtracker.hpp index 3a1f722..3a1f722 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/hybridtracker.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/contrib/hybridtracker.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/openfabmap.hpp b/thirdparty/raspberrypi/includes/opencv2/contrib/openfabmap.hpp index 6b2834e..6b2834e 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/openfabmap.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/contrib/openfabmap.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/retina.hpp b/thirdparty/raspberrypi/includes/opencv2/contrib/retina.hpp index f261bb4..f261bb4 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/contrib/retina.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/contrib/retina.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core.hpp b/thirdparty/raspberrypi/includes/opencv2/core.hpp index 12773f8..12773f8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/affine.hpp b/thirdparty/raspberrypi/includes/opencv2/core/affine.hpp index 1b560c8..1b560c8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/affine.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/affine.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/core.hpp b/thirdparty/raspberrypi/includes/opencv2/core/core.hpp index 591d50a..591d50a 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/core.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/core.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/core_c.h b/thirdparty/raspberrypi/includes/opencv2/core/core_c.h index b9f1090..b9f1090 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/core_c.h +++ b/thirdparty/raspberrypi/includes/opencv2/core/core_c.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/cuda_devptrs.hpp b/thirdparty/raspberrypi/includes/opencv2/core/cuda_devptrs.hpp index 1534045..1534045 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/cuda_devptrs.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/cuda_devptrs.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/devmem2d.hpp b/thirdparty/raspberrypi/includes/opencv2/core/devmem2d.hpp index 18dfcd8..18dfcd8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/devmem2d.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/devmem2d.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/eigen.hpp b/thirdparty/raspberrypi/includes/opencv2/core/eigen.hpp index a7b237f..a7b237f 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/eigen.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/eigen.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/gpumat.hpp b/thirdparty/raspberrypi/includes/opencv2/core/gpumat.hpp index 68647d9..68647d9 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/gpumat.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/gpumat.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/internal.hpp b/thirdparty/raspberrypi/includes/opencv2/core/internal.hpp index c2c8961..c2c8961 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/internal.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/internal.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/mat.hpp b/thirdparty/raspberrypi/includes/opencv2/core/mat.hpp index 631c698..631c698 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/mat.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/mat.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/opengl_interop.hpp b/thirdparty/raspberrypi/includes/opencv2/core/opengl_interop.hpp index 7ecaa8e..7ecaa8e 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/opengl_interop.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/opengl_interop.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/opengl_interop_deprecated.hpp b/thirdparty/raspberrypi/includes/opencv2/core/opengl_interop_deprecated.hpp index 04e3fc0..04e3fc0 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/opengl_interop_deprecated.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/opengl_interop_deprecated.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/operations.hpp b/thirdparty/raspberrypi/includes/opencv2/core/operations.hpp index 0ae51c6..0ae51c6 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/operations.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/operations.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/types_c.h b/thirdparty/raspberrypi/includes/opencv2/core/types_c.h index c21cd2c..c21cd2c 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/types_c.h +++ b/thirdparty/raspberrypi/includes/opencv2/core/types_c.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/version.hpp b/thirdparty/raspberrypi/includes/opencv2/core/version.hpp index 2dbb3c3..2dbb3c3 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/version.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/version.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/wimage.hpp b/thirdparty/raspberrypi/includes/opencv2/core/wimage.hpp index c7afa8c..c7afa8c 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/core/wimage.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/core/wimage.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/features2d.hpp b/thirdparty/raspberrypi/includes/opencv2/features2d.hpp index 3ab3273..3ab3273 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/features2d.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/features2d.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/features2d/features2d.hpp b/thirdparty/raspberrypi/includes/opencv2/features2d/features2d.hpp index e4e796f..e4e796f 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/features2d/features2d.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/features2d/features2d.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann.hpp b/thirdparty/raspberrypi/includes/opencv2/flann.hpp index ea8fcd7..ea8fcd7 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/flann.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/all_indices.h b/thirdparty/raspberrypi/includes/opencv2/flann/all_indices.h index ff53fd8..ff53fd8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/all_indices.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/all_indices.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/allocator.h b/thirdparty/raspberrypi/includes/opencv2/flann/allocator.h index 26091d0..26091d0 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/allocator.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/allocator.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/any.h b/thirdparty/raspberrypi/includes/opencv2/flann/any.h index 7e3fd79..7e3fd79 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/any.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/any.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/autotuned_index.h b/thirdparty/raspberrypi/includes/opencv2/flann/autotuned_index.h index 454641e..454641e 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/autotuned_index.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/autotuned_index.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/composite_index.h b/thirdparty/raspberrypi/includes/opencv2/flann/composite_index.h index 02b7bc1..02b7bc1 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/composite_index.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/composite_index.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/config.h b/thirdparty/raspberrypi/includes/opencv2/flann/config.h index 56832fd..56832fd 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/config.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/config.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/defines.h b/thirdparty/raspberrypi/includes/opencv2/flann/defines.h index 13833b3..13833b3 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/defines.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/defines.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dist.h b/thirdparty/raspberrypi/includes/opencv2/flann/dist.h index 5ba3d34..5ba3d34 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dist.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/dist.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dummy.h b/thirdparty/raspberrypi/includes/opencv2/flann/dummy.h index 3390981..3390981 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dummy.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/dummy.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dynamic_bitset.h b/thirdparty/raspberrypi/includes/opencv2/flann/dynamic_bitset.h index d795b5d..d795b5d 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/dynamic_bitset.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/dynamic_bitset.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/flann.hpp b/thirdparty/raspberrypi/includes/opencv2/flann/flann.hpp index d053488..d053488 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/flann.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/flann/flann.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/flann_base.hpp b/thirdparty/raspberrypi/includes/opencv2/flann/flann_base.hpp index bb5b120..bb5b120 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/flann_base.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/flann/flann_base.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/general.h b/thirdparty/raspberrypi/includes/opencv2/flann/general.h index 87e7e2f..87e7e2f 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/general.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/general.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/ground_truth.h b/thirdparty/raspberrypi/includes/opencv2/flann/ground_truth.h index fd8f3ae..fd8f3ae 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/ground_truth.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/ground_truth.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/hdf5.h b/thirdparty/raspberrypi/includes/opencv2/flann/hdf5.h index ef3e999..ef3e999 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/hdf5.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/hdf5.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/heap.h b/thirdparty/raspberrypi/includes/opencv2/flann/heap.h index 92a6ea6..92a6ea6 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/heap.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/heap.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/hierarchical_clustering_index.h b/thirdparty/raspberrypi/includes/opencv2/flann/hierarchical_clustering_index.h index 59423ae..59423ae 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/hierarchical_clustering_index.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/hierarchical_clustering_index.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/index_testing.h b/thirdparty/raspberrypi/includes/opencv2/flann/index_testing.h index d764004..d764004 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/index_testing.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/index_testing.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kdtree_index.h b/thirdparty/raspberrypi/includes/opencv2/flann/kdtree_index.h index 1b8af4a..1b8af4a 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kdtree_index.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/kdtree_index.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kdtree_single_index.h b/thirdparty/raspberrypi/includes/opencv2/flann/kdtree_single_index.h index 252fc4c..252fc4c 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kdtree_single_index.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/kdtree_single_index.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kmeans_index.h b/thirdparty/raspberrypi/includes/opencv2/flann/kmeans_index.h index e119ceb..e119ceb 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/kmeans_index.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/kmeans_index.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/linear_index.h b/thirdparty/raspberrypi/includes/opencv2/flann/linear_index.h index 0ea084a..0ea084a 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/linear_index.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/linear_index.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/logger.h b/thirdparty/raspberrypi/includes/opencv2/flann/logger.h index 24f3fb6..24f3fb6 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/logger.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/logger.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/lsh_index.h b/thirdparty/raspberrypi/includes/opencv2/flann/lsh_index.h index 2b89337..2b89337 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/lsh_index.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/lsh_index.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/lsh_table.h b/thirdparty/raspberrypi/includes/opencv2/flann/lsh_table.h index cef01b2..cef01b2 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/lsh_table.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/lsh_table.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/matrix.h b/thirdparty/raspberrypi/includes/opencv2/flann/matrix.h index 51b6c63..51b6c63 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/matrix.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/matrix.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/miniflann.hpp b/thirdparty/raspberrypi/includes/opencv2/flann/miniflann.hpp index 121f8d0..121f8d0 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/miniflann.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/flann/miniflann.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/nn_index.h b/thirdparty/raspberrypi/includes/opencv2/flann/nn_index.h index 4a874f5..4a874f5 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/nn_index.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/nn_index.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/object_factory.h b/thirdparty/raspberrypi/includes/opencv2/flann/object_factory.h index 7f971c5..7f971c5 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/object_factory.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/object_factory.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/params.h b/thirdparty/raspberrypi/includes/opencv2/flann/params.h index b40c39e..b40c39e 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/params.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/params.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/random.h b/thirdparty/raspberrypi/includes/opencv2/flann/random.h index a3cf5ec..a3cf5ec 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/random.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/random.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/result_set.h b/thirdparty/raspberrypi/includes/opencv2/flann/result_set.h index 9750019..9750019 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/result_set.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/result_set.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/sampling.h b/thirdparty/raspberrypi/includes/opencv2/flann/sampling.h index 396f177..396f177 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/sampling.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/sampling.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/saving.h b/thirdparty/raspberrypi/includes/opencv2/flann/saving.h index 7e3bea5..7e3bea5 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/saving.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/saving.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/simplex_downhill.h b/thirdparty/raspberrypi/includes/opencv2/flann/simplex_downhill.h index 145901a..145901a 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/simplex_downhill.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/simplex_downhill.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/timer.h b/thirdparty/raspberrypi/includes/opencv2/flann/timer.h index 107371e..107371e 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/flann/timer.h +++ b/thirdparty/raspberrypi/includes/opencv2/flann/timer.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/block.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/block.hpp index 6cc00ae..6cc00ae 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/block.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/block.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/border_interpolate.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/border_interpolate.hpp index 693ba21..693ba21 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/border_interpolate.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/border_interpolate.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/color.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/color.hpp index 5af64bf..5af64bf 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/color.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/color.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/common.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/common.hpp index 26a349f..26a349f 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/common.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/common.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/datamov_utils.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/datamov_utils.hpp index a3f62fb..a3f62fb 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/datamov_utils.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/datamov_utils.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/color_detail.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/color_detail.hpp index c4ec64b..c4ec64b 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/color_detail.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/color_detail.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/reduce.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/reduce.hpp index 091a160..091a160 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/reduce.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/reduce.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/reduce_key_val.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/reduce_key_val.hpp index a84e0c2..a84e0c2 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/reduce_key_val.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/reduce_key_val.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/transform_detail.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/transform_detail.hpp index 10da593..10da593 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/transform_detail.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/transform_detail.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/type_traits_detail.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/type_traits_detail.hpp index 97ff00d..97ff00d 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/type_traits_detail.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/type_traits_detail.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/vec_distance_detail.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/vec_distance_detail.hpp index 78ab556..78ab556 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/detail/vec_distance_detail.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/detail/vec_distance_detail.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/dynamic_smem.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/dynamic_smem.hpp index cf431d9..cf431d9 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/dynamic_smem.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/dynamic_smem.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/emulation.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/emulation.hpp index bf47bc5..bf47bc5 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/emulation.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/emulation.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/filters.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/filters.hpp index d193969..d193969 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/filters.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/filters.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/funcattrib.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/funcattrib.hpp index 2ed7980..2ed7980 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/funcattrib.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/funcattrib.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/functional.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/functional.hpp index db26473..db26473 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/functional.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/functional.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/limits.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/limits.hpp index 5959780..5959780 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/limits.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/limits.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/reduce.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/reduce.hpp index 2161b06..2161b06 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/reduce.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/reduce.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/saturate_cast.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/saturate_cast.hpp index 7a2799f..7a2799f 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/saturate_cast.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/saturate_cast.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/scan.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/scan.hpp index 3d8da16..3d8da16 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/scan.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/scan.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/simd_functions.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/simd_functions.hpp index b0377e5..b0377e5 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/simd_functions.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/simd_functions.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/static_check.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/static_check.hpp index e77691b..e77691b 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/static_check.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/static_check.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/transform.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/transform.hpp index 636caac..636caac 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/transform.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/transform.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/type_traits.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/type_traits.hpp index 1b36acc..1b36acc 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/type_traits.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/type_traits.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/utility.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/utility.hpp index 85e81ac..85e81ac 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/utility.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/utility.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_distance.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_distance.hpp index d5b4bb2..d5b4bb2 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_distance.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_distance.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_math.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_math.hpp index a6cb43a..a6cb43a 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_math.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_math.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_traits.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_traits.hpp index 8d179c8..8d179c8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/vec_traits.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/vec_traits.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp.hpp index 0f1dc79..0f1dc79 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp_reduce.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp_reduce.hpp index d4e64c4..d4e64c4 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp_reduce.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp_reduce.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp_shuffle.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp_shuffle.hpp index 8b4479a..8b4479a 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/device/warp_shuffle.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/device/warp_shuffle.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/devmem2d.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/devmem2d.hpp index 18dfcd8..18dfcd8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/devmem2d.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/devmem2d.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/gpu.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/gpu.hpp index de16982..de16982 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/gpu.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/gpu.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/gpumat.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/gpumat.hpp index 840398b..840398b 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/gpumat.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/gpumat.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/stream_accessor.hpp b/thirdparty/raspberrypi/includes/opencv2/gpu/stream_accessor.hpp index bcd58ba..bcd58ba 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/gpu/stream_accessor.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/gpu/stream_accessor.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui.hpp b/thirdparty/raspberrypi/includes/opencv2/highgui.hpp index c76a020..c76a020 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/highgui.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/cap_ios.h b/thirdparty/raspberrypi/includes/opencv2/highgui/cap_ios.h index 4c931d4..4c931d4 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/cap_ios.h +++ b/thirdparty/raspberrypi/includes/opencv2/highgui/cap_ios.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/highgui.hpp b/thirdparty/raspberrypi/includes/opencv2/highgui/highgui.hpp index f6f2293..f6f2293 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/highgui.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/highgui/highgui.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/highgui_c.h b/thirdparty/raspberrypi/includes/opencv2/highgui/highgui_c.h index 85a59bb..85a59bb 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/highgui_c.h +++ b/thirdparty/raspberrypi/includes/opencv2/highgui/highgui_c.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/ios.h b/thirdparty/raspberrypi/includes/opencv2/highgui/ios.h index a7f0395..a7f0395 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/highgui/ios.h +++ b/thirdparty/raspberrypi/includes/opencv2/highgui/ios.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc.hpp b/thirdparty/raspberrypi/includes/opencv2/imgproc.hpp index 112f723..112f723 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/imgproc.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/imgproc.hpp b/thirdparty/raspberrypi/includes/opencv2/imgproc/imgproc.hpp index aa6a5f6..aa6a5f6 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/imgproc.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/imgproc/imgproc.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/imgproc_c.h b/thirdparty/raspberrypi/includes/opencv2/imgproc/imgproc_c.h index 46d9f01..46d9f01 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/imgproc_c.h +++ b/thirdparty/raspberrypi/includes/opencv2/imgproc/imgproc_c.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/types_c.h b/thirdparty/raspberrypi/includes/opencv2/imgproc/types_c.h index 4aba0a8..4aba0a8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/imgproc/types_c.h +++ b/thirdparty/raspberrypi/includes/opencv2/imgproc/types_c.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/blobtrack.hpp b/thirdparty/raspberrypi/includes/opencv2/legacy/blobtrack.hpp index 496b8be..496b8be 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/blobtrack.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/legacy/blobtrack.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/compat.hpp b/thirdparty/raspberrypi/includes/opencv2/legacy/compat.hpp index 5b5495e..5b5495e 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/compat.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/legacy/compat.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/legacy.hpp b/thirdparty/raspberrypi/includes/opencv2/legacy/legacy.hpp index 96da25c..96da25c 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/legacy.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/legacy/legacy.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/streams.hpp b/thirdparty/raspberrypi/includes/opencv2/legacy/streams.hpp index e164bf4..e164bf4 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/legacy/streams.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/legacy/streams.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ml.hpp b/thirdparty/raspberrypi/includes/opencv2/ml.hpp index dc62dcb..dc62dcb 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ml.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/ml.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ml/ml.hpp b/thirdparty/raspberrypi/includes/opencv2/ml/ml.hpp index d86ecde..d86ecde 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ml/ml.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/ml/ml.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/features2d.hpp b/thirdparty/raspberrypi/includes/opencv2/nonfree/features2d.hpp index f23bec8..f23bec8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/features2d.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/nonfree/features2d.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/gpu.hpp b/thirdparty/raspberrypi/includes/opencv2/nonfree/gpu.hpp index 722ef26..722ef26 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/gpu.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/nonfree/gpu.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/nonfree.hpp b/thirdparty/raspberrypi/includes/opencv2/nonfree/nonfree.hpp index c64c566..c64c566 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/nonfree.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/nonfree/nonfree.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/ocl.hpp b/thirdparty/raspberrypi/includes/opencv2/nonfree/ocl.hpp index ba84d24..ba84d24 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/nonfree/ocl.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/nonfree/ocl.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/objdetect.hpp b/thirdparty/raspberrypi/includes/opencv2/objdetect.hpp index 71f201c..71f201c 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/objdetect.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/objdetect.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/objdetect/objdetect.hpp b/thirdparty/raspberrypi/includes/opencv2/objdetect/objdetect.hpp index d5d6f0b..d5d6f0b 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/objdetect/objdetect.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/objdetect/objdetect.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ocl/matrix_operations.hpp b/thirdparty/raspberrypi/includes/opencv2/ocl/matrix_operations.hpp index d6f3bb4..d6f3bb4 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ocl/matrix_operations.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/ocl/matrix_operations.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ocl/ocl.hpp b/thirdparty/raspberrypi/includes/opencv2/ocl/ocl.hpp index e8eb3e8..e8eb3e8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ocl/ocl.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/ocl/ocl.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/opencv.hpp b/thirdparty/raspberrypi/includes/opencv2/opencv.hpp index f76da92..f76da92 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/opencv.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/opencv.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/opencv_modules.hpp b/thirdparty/raspberrypi/includes/opencv2/opencv_modules.hpp index 4425eec..4425eec 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/opencv_modules.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/opencv_modules.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo.hpp b/thirdparty/raspberrypi/includes/opencv2/photo.hpp index 521a1ad..521a1ad 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/photo.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo/photo.hpp b/thirdparty/raspberrypi/includes/opencv2/photo/photo.hpp index 6697377..6697377 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo/photo.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/photo/photo.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo/photo_c.h b/thirdparty/raspberrypi/includes/opencv2/photo/photo_c.h index 4ca05f2..4ca05f2 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/photo/photo_c.h +++ b/thirdparty/raspberrypi/includes/opencv2/photo/photo_c.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching.hpp index ed65bb3..ed65bb3 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/autocalib.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/autocalib.hpp index feb5349..feb5349 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/autocalib.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/autocalib.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/blenders.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/blenders.hpp index bd93a71..bd93a71 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/blenders.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/blenders.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/camera.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/camera.hpp index a74abcb..a74abcb 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/camera.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/camera.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/exposure_compensate.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/exposure_compensate.hpp index 49676fe..49676fe 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/exposure_compensate.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/exposure_compensate.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/matchers.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/matchers.hpp index f319df1..f319df1 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/matchers.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/matchers.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/motion_estimators.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/motion_estimators.hpp index 9ae1102..9ae1102 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/motion_estimators.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/motion_estimators.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/seam_finders.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/seam_finders.hpp index 5b1d5d9..5b1d5d9 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/seam_finders.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/seam_finders.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/util.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/util.hpp index a8ba816..a8ba816 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/util.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/util.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/util_inl.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/util_inl.hpp index ab5d94b..ab5d94b 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/util_inl.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/util_inl.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/warpers.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/warpers.hpp index 60d5e54..60d5e54 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/warpers.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/warpers.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/warpers_inl.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/warpers_inl.hpp index b112123..b112123 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/detail/warpers_inl.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/detail/warpers_inl.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/stitcher.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/stitcher.hpp index e274deb..e274deb 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/stitcher.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/stitcher.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/warpers.hpp b/thirdparty/raspberrypi/includes/opencv2/stitching/warpers.hpp index 11e012f..11e012f 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/stitching/warpers.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/stitching/warpers.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres.hpp b/thirdparty/raspberrypi/includes/opencv2/superres.hpp index 8c344ca..8c344ca 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/superres.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres/optical_flow.hpp b/thirdparty/raspberrypi/includes/opencv2/superres/optical_flow.hpp index d51ce79..d51ce79 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres/optical_flow.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/superres/optical_flow.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres/superres.hpp b/thirdparty/raspberrypi/includes/opencv2/superres/superres.hpp index 8daeb5b..8daeb5b 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/superres/superres.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/superres/superres.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts.hpp b/thirdparty/raspberrypi/includes/opencv2/ts.hpp index e96b101..e96b101 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/ts.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/gpu_perf.hpp b/thirdparty/raspberrypi/includes/opencv2/ts/gpu_perf.hpp index 87f1737..87f1737 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/gpu_perf.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/ts/gpu_perf.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/gpu_test.hpp b/thirdparty/raspberrypi/includes/opencv2/ts/gpu_test.hpp index 01737bc..01737bc 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/gpu_test.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/ts/gpu_test.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts.hpp b/thirdparty/raspberrypi/includes/opencv2/ts/ts.hpp index d3c1765..d3c1765 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/ts/ts.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts_gtest.h b/thirdparty/raspberrypi/includes/opencv2/ts/ts_gtest.h index 75453d2..75453d2 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts_gtest.h +++ b/thirdparty/raspberrypi/includes/opencv2/ts/ts_gtest.h diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts_perf.hpp b/thirdparty/raspberrypi/includes/opencv2/ts/ts_perf.hpp index 1830906..1830906 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/ts/ts_perf.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/ts/ts_perf.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video.hpp b/thirdparty/raspberrypi/includes/opencv2/video.hpp index be11ce4..be11ce4 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/video.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/background_segm.hpp b/thirdparty/raspberrypi/includes/opencv2/video/background_segm.hpp index d2d068c..d2d068c 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/background_segm.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/video/background_segm.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/tracking.hpp b/thirdparty/raspberrypi/includes/opencv2/video/tracking.hpp index f09be80..f09be80 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/tracking.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/video/tracking.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/video.hpp b/thirdparty/raspberrypi/includes/opencv2/video/video.hpp index 1dd96f5..1dd96f5 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/video/video.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/video/video.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab.hpp index 4334d5c..4334d5c 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/deblurring.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/deblurring.hpp index a61f9ce..a61f9ce 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/deblurring.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/deblurring.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/fast_marching.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/fast_marching.hpp index 23c5df3..23c5df3 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/fast_marching.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/fast_marching.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/fast_marching_inl.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/fast_marching_inl.hpp index dc860c2..dc860c2 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/fast_marching_inl.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/fast_marching_inl.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/frame_source.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/frame_source.hpp index c22c0a4..c22c0a4 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/frame_source.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/frame_source.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/global_motion.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/global_motion.hpp index f5f34b9..f5f34b9 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/global_motion.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/global_motion.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/inpainting.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/inpainting.hpp index 8df60f7..8df60f7 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/inpainting.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/inpainting.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/log.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/log.hpp index ce6fadf..ce6fadf 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/log.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/log.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/motion_stabilizing.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/motion_stabilizing.hpp index de05ad2..de05ad2 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/motion_stabilizing.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/motion_stabilizing.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/optical_flow.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/optical_flow.hpp index 2c1742f..2c1742f 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/optical_flow.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/optical_flow.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/stabilizer.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/stabilizer.hpp index d1d5388..d1d5388 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/stabilizer.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/stabilizer.hpp diff --git a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/videostab.hpp b/thirdparty/raspberrypi/includes/opencv2/videostab/videostab.hpp index 3ea34a8..3ea34a8 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/opencv2/videostab/videostab.hpp +++ b/thirdparty/raspberrypi/includes/opencv2/videostab/videostab.hpp diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/pcf8574.h b/thirdparty/raspberrypi/includes/pcf8574.h index 8e2d818..8e2d818 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/pcf8574.h +++ b/thirdparty/raspberrypi/includes/pcf8574.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/pcf8591.h b/thirdparty/raspberrypi/includes/pcf8591.h index 6b44ccf..6b44ccf 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/pcf8591.h +++ b/thirdparty/raspberrypi/includes/pcf8591.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/sn3218.h b/thirdparty/raspberrypi/includes/sn3218.h index 580d5f9..580d5f9 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/sn3218.h +++ b/thirdparty/raspberrypi/includes/sn3218.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/softPwm.h b/thirdparty/raspberrypi/includes/softPwm.h index 0351da5..0351da5 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/softPwm.h +++ b/thirdparty/raspberrypi/includes/softPwm.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/softServo.h b/thirdparty/raspberrypi/includes/softServo.h index 794cf55..794cf55 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/softServo.h +++ b/thirdparty/raspberrypi/includes/softServo.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/softTone.h b/thirdparty/raspberrypi/includes/softTone.h index a93c5af..a93c5af 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/softTone.h +++ b/thirdparty/raspberrypi/includes/softTone.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/sr595.h b/thirdparty/raspberrypi/includes/sr595.h index 4a26dc7..4a26dc7 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/sr595.h +++ b/thirdparty/raspberrypi/includes/sr595.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPi.h b/thirdparty/raspberrypi/includes/wiringPi.h index a5eea87..a5eea87 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPi.h +++ b/thirdparty/raspberrypi/includes/wiringPi.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPiI2C.h b/thirdparty/raspberrypi/includes/wiringPiI2C.h index 6db8c68..6db8c68 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPiI2C.h +++ b/thirdparty/raspberrypi/includes/wiringPiI2C.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPiSPI.h b/thirdparty/raspberrypi/includes/wiringPiSPI.h index 3980321..3980321 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/wiringPiSPI.h +++ b/thirdparty/raspberrypi/includes/wiringPiSPI.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/wiringSerial.h b/thirdparty/raspberrypi/includes/wiringSerial.h index 430dc73..430dc73 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/wiringSerial.h +++ b/thirdparty/raspberrypi/includes/wiringSerial.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/wiringShift.h b/thirdparty/raspberrypi/includes/wiringShift.h index 419ade4..419ade4 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/wiringShift.h +++ b/thirdparty/raspberrypi/includes/wiringShift.h diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/wpiExtensions.h b/thirdparty/raspberrypi/includes/wpiExtensions.h index fcaec96..fcaec96 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/wpiExtensions.h +++ b/thirdparty/raspberrypi/includes/wpiExtensions.h diff --git a/src/c/hardware/rasberrypi/libraries/libIlmImf.a b/thirdparty/raspberrypi/lib/libIlmImf.a Binary files differindex 0d9631d..0d9631d 100644 --- a/src/c/hardware/rasberrypi/libraries/libIlmImf.a +++ b/thirdparty/raspberrypi/lib/libIlmImf.a diff --git a/src/c/hardware/rasberrypi/libraries/libcblas.a b/thirdparty/raspberrypi/lib/libcblas.a Binary files differindex 7a460be..7a460be 100644 --- a/src/c/hardware/rasberrypi/libraries/libcblas.a +++ b/thirdparty/raspberrypi/lib/libcblas.a diff --git a/src/c/hardware/rasberrypi/libraries/libgfortran.a b/thirdparty/raspberrypi/lib/libgfortran.a Binary files differindex 7aacee8..7aacee8 100644 --- a/src/c/hardware/rasberrypi/libraries/libgfortran.a +++ b/thirdparty/raspberrypi/lib/libgfortran.a diff --git a/src/c/hardware/rasberrypi/libraries/libgsl.a b/thirdparty/raspberrypi/lib/libgsl.a Binary files differindex 1eb5d60..1eb5d60 100644 --- a/src/c/hardware/rasberrypi/libraries/libgsl.a +++ b/thirdparty/raspberrypi/lib/libgsl.a diff --git a/src/c/hardware/rasberrypi/libraries/libjasper.a b/thirdparty/raspberrypi/lib/libjasper.a Binary files differindex 662e414..662e414 100644 --- a/src/c/hardware/rasberrypi/libraries/libjasper.a +++ b/thirdparty/raspberrypi/lib/libjasper.a diff --git a/src/c/hardware/rasberrypi/libraries/libjpeg.a b/thirdparty/raspberrypi/lib/libjpeg.a Binary files differindex e30c70c..e30c70c 100644 --- a/src/c/hardware/rasberrypi/libraries/libjpeg.a +++ b/thirdparty/raspberrypi/lib/libjpeg.a diff --git a/src/c/hardware/rasberrypi/libraries/liblapack.a b/thirdparty/raspberrypi/lib/liblapack.a Binary files differindex 726f2b9..726f2b9 100644 --- a/src/c/hardware/rasberrypi/libraries/liblapack.a +++ b/thirdparty/raspberrypi/lib/liblapack.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_calib3d.a b/thirdparty/raspberrypi/lib/libopencv_calib3d.a Binary files differindex 5d69787..5d69787 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_calib3d.a +++ b/thirdparty/raspberrypi/lib/libopencv_calib3d.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_contrib.a b/thirdparty/raspberrypi/lib/libopencv_contrib.a Binary files differindex c2b4527..c2b4527 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_contrib.a +++ b/thirdparty/raspberrypi/lib/libopencv_contrib.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_core.a b/thirdparty/raspberrypi/lib/libopencv_core.a Binary files differindex 1a7056f..1a7056f 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_core.a +++ b/thirdparty/raspberrypi/lib/libopencv_core.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_features2d.a b/thirdparty/raspberrypi/lib/libopencv_features2d.a Binary files differindex 3bd21f2..3bd21f2 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_features2d.a +++ b/thirdparty/raspberrypi/lib/libopencv_features2d.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_flann.a b/thirdparty/raspberrypi/lib/libopencv_flann.a Binary files differindex b5648fc..b5648fc 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_flann.a +++ b/thirdparty/raspberrypi/lib/libopencv_flann.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_gpu.a b/thirdparty/raspberrypi/lib/libopencv_gpu.a Binary files differindex a3b093a..a3b093a 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_gpu.a +++ b/thirdparty/raspberrypi/lib/libopencv_gpu.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_highgui.a b/thirdparty/raspberrypi/lib/libopencv_highgui.a Binary files differindex 9b22dab..9b22dab 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_highgui.a +++ b/thirdparty/raspberrypi/lib/libopencv_highgui.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_imgproc.a b/thirdparty/raspberrypi/lib/libopencv_imgproc.a Binary files differindex 3ae1ca0..3ae1ca0 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_imgproc.a +++ b/thirdparty/raspberrypi/lib/libopencv_imgproc.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_legacy.a b/thirdparty/raspberrypi/lib/libopencv_legacy.a Binary files differindex 2d906d1..2d906d1 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_legacy.a +++ b/thirdparty/raspberrypi/lib/libopencv_legacy.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ml.a b/thirdparty/raspberrypi/lib/libopencv_ml.a Binary files differindex 5f6c164..5f6c164 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ml.a +++ b/thirdparty/raspberrypi/lib/libopencv_ml.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_nonfree.a b/thirdparty/raspberrypi/lib/libopencv_nonfree.a Binary files differindex 4f49c8d..4f49c8d 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_nonfree.a +++ b/thirdparty/raspberrypi/lib/libopencv_nonfree.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_objdetect.a b/thirdparty/raspberrypi/lib/libopencv_objdetect.a Binary files differindex 6b3ddad..6b3ddad 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_objdetect.a +++ b/thirdparty/raspberrypi/lib/libopencv_objdetect.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ocl.a b/thirdparty/raspberrypi/lib/libopencv_ocl.a Binary files differindex f5a4b42..f5a4b42 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ocl.a +++ b/thirdparty/raspberrypi/lib/libopencv_ocl.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_photo.a b/thirdparty/raspberrypi/lib/libopencv_photo.a Binary files differindex 998a80a..998a80a 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_photo.a +++ b/thirdparty/raspberrypi/lib/libopencv_photo.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_stitching.a b/thirdparty/raspberrypi/lib/libopencv_stitching.a Binary files differindex aa0b1d3..aa0b1d3 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_stitching.a +++ b/thirdparty/raspberrypi/lib/libopencv_stitching.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_superres.a b/thirdparty/raspberrypi/lib/libopencv_superres.a Binary files differindex d33df01..d33df01 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_superres.a +++ b/thirdparty/raspberrypi/lib/libopencv_superres.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ts.a b/thirdparty/raspberrypi/lib/libopencv_ts.a Binary files differindex f701602..f701602 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_ts.a +++ b/thirdparty/raspberrypi/lib/libopencv_ts.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_video.a b/thirdparty/raspberrypi/lib/libopencv_video.a Binary files differindex c4a07bf..c4a07bf 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_video.a +++ b/thirdparty/raspberrypi/lib/libopencv_video.a diff --git a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_videostab.a b/thirdparty/raspberrypi/lib/libopencv_videostab.a Binary files differindex e2c302d..e2c302d 100644 --- a/src/c/hardware/rasberrypi/libraries/opencv/libopencv_videostab.a +++ b/thirdparty/raspberrypi/lib/libopencv_videostab.a diff --git a/src/c/hardware/rasberrypi/libraries/libpng.a b/thirdparty/raspberrypi/lib/libpng.a Binary files differindex 937cc22..937cc22 100644 --- a/src/c/hardware/rasberrypi/libraries/libpng.a +++ b/thirdparty/raspberrypi/lib/libpng.a diff --git a/src/c/hardware/rasberrypi/libraries/librefblas.a b/thirdparty/raspberrypi/lib/librefblas.a Binary files differindex 300a0db..300a0db 100644 --- a/src/c/hardware/rasberrypi/libraries/librefblas.a +++ b/thirdparty/raspberrypi/lib/librefblas.a diff --git a/src/c/hardware/rasberrypi/libraries/libtiff.a b/thirdparty/raspberrypi/lib/libtiff.a Binary files differindex 917d747..917d747 100644 --- a/src/c/hardware/rasberrypi/libraries/libtiff.a +++ b/thirdparty/raspberrypi/lib/libtiff.a diff --git a/src/c/hardware/rasberrypi/libraries/wiringPi/libwiringPi.so b/thirdparty/raspberrypi/lib/libwiringPi.so Binary files differindex da4a81e..da4a81e 100644 --- a/src/c/hardware/rasberrypi/libraries/wiringPi/libwiringPi.so +++ b/thirdparty/raspberrypi/lib/libwiringPi.so diff --git a/src/c/hardware/rasberrypi/libraries/libzlib.a b/thirdparty/raspberrypi/lib/libzlib.a Binary files differindex 5a64389..5a64389 100644 --- a/src/c/hardware/rasberrypi/libraries/libzlib.a +++ b/thirdparty/raspberrypi/lib/libzlib.a |