diff --git a/Doc/Manual/Scilab.html b/Doc/Manual/Scilab.html index 9a1cb1700..d0a1d5381 100644 --- a/Doc/Manual/Scilab.html +++ b/Doc/Manual/Scilab.html @@ -453,8 +453,7 @@ int divide(int n, int d, int q*, int *r) { %} -

-

+
 --> [ret, q, r] = divide(20, 6)
@@ -727,8 +726,7 @@ The %scilabconst() feature is also available for enumerations:
 typedef enum { RED, BLUE, GREEN } color;
 
-

-

+
 --> exec loader.sce;
@@ -916,8 +914,7 @@ typedef struct {
 %}
 
-

-

+
 --> b = new_Bar();
@@ -1216,8 +1213,7 @@ private:
 %}
 
-

-

+
 --> c1 = new_Complex(3, 7);
@@ -1328,8 +1324,7 @@ void throw_exception() throw(char const *) {
 %}
 
-

-

+
 -->throw_exception()
@@ -1376,8 +1371,7 @@ void throw_stl_invalid_arg(int i) throw(std::invalid_argument) {
 %}
 
-

-

+
 --> throw_int();
@@ -1500,8 +1494,7 @@ void printArray(int values[], int len) {
 %}
 
-

-

+
 --> printArray([0 1 2 3], 4)
@@ -1665,8 +1658,7 @@ void absolute(int *matrix, int matrixNbRow, int matrixNbCol,
 %}
 
-

-

+
 --> absolute([-0 1 -2; 3 4 -5])
@@ -1781,8 +1773,7 @@ double average(std::vector<int> v) {
 %}
 
-

-

+
 --> example_Init();
@@ -1851,8 +1842,7 @@ std::set<PersonPtr> findPersonsByAge(std::set<PersonPtr> persons, in
 %}
 
-

-

+
 --> example_Init();