summaryrefslogtreecommitdiff
path: root/modules/intersci/help
diff options
context:
space:
mode:
authorShashank2017-05-29 12:40:26 +0530
committerShashank2017-05-29 12:40:26 +0530
commit0345245e860375a32c9a437c4a9d9cae807134e9 (patch)
treead51ecbfa7bcd3cc5f09834f1bb8c08feaa526a4 /modules/intersci/help
downloadscilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.tar.gz
scilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.tar.bz2
scilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.zip
CMSCOPE changed
Diffstat (limited to 'modules/intersci/help')
-rwxr-xr-xmodules/intersci/help/en_US/addchapter.sce11
-rwxr-xr-xmodules/intersci/help/en_US/intersci.xml57
-rwxr-xr-xmodules/intersci/help/fr_FR/addchapter.sce11
-rwxr-xr-xmodules/intersci/help/ja_JP/addchapter.sce11
-rwxr-xr-xmodules/intersci/help/pt_BR/addchapter.sce11
-rwxr-xr-xmodules/intersci/help/ru_RU/addchapter.sce11
6 files changed, 112 insertions, 0 deletions
diff --git a/modules/intersci/help/en_US/addchapter.sce b/modules/intersci/help/en_US/addchapter.sce
new file mode 100755
index 000000000..21245f316
--- /dev/null
+++ b/modules/intersci/help/en_US/addchapter.sce
@@ -0,0 +1,11 @@
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2009 - DIGITEO
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+
+add_help_chapter("Intersci",SCI+"/modules/intersci/help/en_US",%T);
+
diff --git a/modules/intersci/help/en_US/intersci.xml b/modules/intersci/help/en_US/intersci.xml
new file mode 100755
index 000000000..cf0fb6ec9
--- /dev/null
+++ b/modules/intersci/help/en_US/intersci.xml
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2006-2008 - INRIA
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:lang="en" scilab:needs-examples="no" xml:id="intersci">
+ <refnamediv>
+ <refname>intersci</refname>
+ <refpurpose>Scilab tool to interface C or Fortran functions with scilab. Deprecated: Please use SWIG</refpurpose>
+ </refnamediv>
+ <refsection>
+ <title>Description</title>
+ <para>
+ All scilab primitive functions are defined in a set of interface
+ routines. For each function the interfacing code checks first number of
+ rhs and lhs arguments. Then it get pointers on input arguments in the
+ Scilab data base and checks their types. After that it calls procedure
+ associated with Scilab functions, checks returned errors flags and set
+ the results in the data base.
+ </para>
+ <para>
+ <literal>intersci</literal> is a program which permits to interface automatically FORTRAN
+ subroutines or C functions to Scilab
+ </para>
+ <para>
+ With <literal>intersci</literal>, a user can group all his FORTRAN or C code into a same set,
+ called an interface, and use them in Scilab as Scilab functions. The interfacing
+ is made by creating a FORTRAN subroutine which has to be linked to
+ Scilab together
+ with the user code. This complex FORTRAN subroutine is automatically generated
+ by <literal>intersci</literal> from a description file of the interface.
+ </para>
+ <para>Refer to intersci documentation for more details.</para>
+ <para>Note that this feature is obsolete and unsupported and will be replaced by a Scilab SWIG wrapper in an upcoming version.</para>
+ </refsection>
+ <refsection role="see also">
+ <title>See Also</title>
+ <simplelist type="inline">
+ <member>
+ <link linkend="fort">fort</link>
+ </member>
+ <member>
+ <link linkend="external">external</link>
+ </member>
+ <member>
+ <link linkend="addinter">addinter</link>
+ </member>
+ </simplelist>
+ </refsection>
+</refentry>
diff --git a/modules/intersci/help/fr_FR/addchapter.sce b/modules/intersci/help/fr_FR/addchapter.sce
new file mode 100755
index 000000000..8ff771bbd
--- /dev/null
+++ b/modules/intersci/help/fr_FR/addchapter.sce
@@ -0,0 +1,11 @@
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2009 - DIGITEO
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+
+add_help_chapter("Intersci",SCI+"/modules/intersci/help/fr_FR",%T);
+
diff --git a/modules/intersci/help/ja_JP/addchapter.sce b/modules/intersci/help/ja_JP/addchapter.sce
new file mode 100755
index 000000000..f5e5ffd2a
--- /dev/null
+++ b/modules/intersci/help/ja_JP/addchapter.sce
@@ -0,0 +1,11 @@
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2009 - DIGITEO
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+
+add_help_chapter("Intersci",SCI+"/modules/intersci/help/ja_JP",%T);
+
diff --git a/modules/intersci/help/pt_BR/addchapter.sce b/modules/intersci/help/pt_BR/addchapter.sce
new file mode 100755
index 000000000..9b8a31fcd
--- /dev/null
+++ b/modules/intersci/help/pt_BR/addchapter.sce
@@ -0,0 +1,11 @@
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2009 - DIGITEO
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+
+add_help_chapter("Intersci",SCI+"/modules/intersci/help/pt_BR",%T);
+
diff --git a/modules/intersci/help/ru_RU/addchapter.sce b/modules/intersci/help/ru_RU/addchapter.sce
new file mode 100755
index 000000000..3264242c1
--- /dev/null
+++ b/modules/intersci/help/ru_RU/addchapter.sce
@@ -0,0 +1,11 @@
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2009 - DIGITEO
+//
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+
+add_help_chapter("Intersci",SCI+"/modules/intersci/help/ru_RU",%T);
+