diff options
Diffstat (limited to 'scilab/modules/compatibility_functions')
4 files changed, 0 insertions, 52 deletions
diff --git a/scilab/modules/compatibility_functions/macros/%b_g_s.sci b/scilab/modules/compatibility_functions/macros/%b_g_s.sci deleted file mode 100644 index 84c4526..0000000 --- a/scilab/modules/compatibility_functions/macros/%b_g_s.sci +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
2 | // Copyright (C) ???? - INRIA - Scilab | ||
3 | // | ||
4 | // This file must be used under the terms of the CeCILL. | ||
5 | // This source file is licensed as described in the file COPYING, which | ||
6 | // you should have received as part of this distribution. The terms | ||
7 | // are also available at | ||
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
9 | |||
10 | function r=%b_g_s(a,b) | ||
11 | // r=a|b | ||
12 | r=a|(b<>0) | ||
13 | endfunction | ||
diff --git a/scilab/modules/compatibility_functions/macros/%b_h_s.sci b/scilab/modules/compatibility_functions/macros/%b_h_s.sci deleted file mode 100644 index 3c4f1a4..0000000 --- a/scilab/modules/compatibility_functions/macros/%b_h_s.sci +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
2 | // Copyright (C) ???? - INRIA - Scilab | ||
3 | // | ||
4 | // This file must be used under the terms of the CeCILL. | ||
5 | // This source file is licensed as described in the file COPYING, which | ||
6 | // you should have received as part of this distribution. The terms | ||
7 | // are also available at | ||
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
9 | |||
10 | function r=%b_h_s(a,b) | ||
11 | // r=a&b | ||
12 | r=a&(b<>0) | ||
13 | endfunction | ||
diff --git a/scilab/modules/compatibility_functions/macros/%s_g_b.sci b/scilab/modules/compatibility_functions/macros/%s_g_b.sci deleted file mode 100644 index 068bed7..0000000 --- a/scilab/modules/compatibility_functions/macros/%s_g_b.sci +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
2 | // Copyright (C) ???? - INRIA - Scilab | ||
3 | // | ||
4 | // This file must be used under the terms of the CeCILL. | ||
5 | // This source file is licensed as described in the file COPYING, which | ||
6 | // you should have received as part of this distribution. The terms | ||
7 | // are also available at | ||
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
9 | |||
10 | function r=%s_g_b(a,b) | ||
11 | // r=a|b | ||
12 | r=(a<>0)|b | ||
13 | endfunction | ||
diff --git a/scilab/modules/compatibility_functions/macros/%s_h_b.sci b/scilab/modules/compatibility_functions/macros/%s_h_b.sci deleted file mode 100644 index 75ff9b1..0000000 --- a/scilab/modules/compatibility_functions/macros/%s_h_b.sci +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
2 | // Copyright (C) ???? - INRIA - Scilab | ||
3 | // | ||
4 | // This file must be used under the terms of the CeCILL. | ||
5 | // This source file is licensed as described in the file COPYING, which | ||
6 | // you should have received as part of this distribution. The terms | ||
7 | // are also available at | ||
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
9 | |||
10 | function r=%s_h_b(a,b) | ||
11 | // r=a&b | ||
12 | r=(a<>0)&b | ||
13 | endfunction | ||