summaryrefslogtreecommitdiff
path: root/src/c/matrixOperations/cumprod
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/matrixOperations/cumprod')
-rw-r--r--src/c/matrixOperations/cumprod/dcolumncumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/drowcumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/i16columncumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/i16rowcumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/i8columncumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/i8rowcumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/scolumncumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/srowcumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/u16columncumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/u16rowcumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/u8columncumproda.c4
-rw-r--r--src/c/matrixOperations/cumprod/u8rowcumproda.c4
12 files changed, 24 insertions, 24 deletions
diff --git a/src/c/matrixOperations/cumprod/dcolumncumproda.c b/src/c/matrixOperations/cumprod/dcolumncumproda.c
index 4eec55f..b64fac4 100644
--- a/src/c/matrixOperations/cumprod/dcolumncumproda.c
+++ b/src/c/matrixOperations/cumprod/dcolumncumproda.c
@@ -19,13 +19,13 @@ void dcolumncumproda(double *in1, int row, int column, double *out)
{
int row_cnt, col_cnt = 0;
- //Assign elements in first column as it is
+ /*Assign elements in first column as it is*/
for(row_cnt = 0; row_cnt < row; row_cnt++)
{
out[row_cnt] = in1[row_cnt];
}
- //For second column onwards
+ /*For second column onwards*/
for (row_cnt = 0; row_cnt < row; row_cnt++)
{
for ( col_cnt = 1; col_cnt < column; col_cnt++)
diff --git a/src/c/matrixOperations/cumprod/drowcumproda.c b/src/c/matrixOperations/cumprod/drowcumproda.c
index 80178b2..21082d0 100644
--- a/src/c/matrixOperations/cumprod/drowcumproda.c
+++ b/src/c/matrixOperations/cumprod/drowcumproda.c
@@ -19,12 +19,12 @@ void drowcumproda(double *in1, int row, int column, double *out)
{
int row_cnt, col_cnt = 0;
- //assign elements in first row as it is
+ /*assign elements in first row as it is*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
out[col_cnt*row] = in1[col_cnt*row];
}
- //For second row onwards
+ /*For second row onwards*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
for ( row_cnt = 1; row_cnt < row; row_cnt++)
diff --git a/src/c/matrixOperations/cumprod/i16columncumproda.c b/src/c/matrixOperations/cumprod/i16columncumproda.c
index 81604bc..e5af54b 100644
--- a/src/c/matrixOperations/cumprod/i16columncumproda.c
+++ b/src/c/matrixOperations/cumprod/i16columncumproda.c
@@ -19,13 +19,13 @@ void i16columncumproda(int16 *in1, int row, int column, int16 *out)
{
int row_cnt, col_cnt = 0;
- //Assign elements in first column as it is
+ /*Assign elements in first column as it is*/
for(row_cnt = 0; row_cnt < row; row_cnt++)
{
out[row_cnt] = in1[row_cnt];
}
- //For second column onwards
+ /*For second column onwards*/
for (row_cnt = 0; row_cnt < row; row_cnt++)
{
for ( col_cnt = 1; col_cnt < column; col_cnt++)
diff --git a/src/c/matrixOperations/cumprod/i16rowcumproda.c b/src/c/matrixOperations/cumprod/i16rowcumproda.c
index 175c864..0c38b5e 100644
--- a/src/c/matrixOperations/cumprod/i16rowcumproda.c
+++ b/src/c/matrixOperations/cumprod/i16rowcumproda.c
@@ -19,12 +19,12 @@ void i16rowcumproda(int16 *in1, int row, int column, int16 *out)
{
int row_cnt, col_cnt = 0;
- //assign elements in first row as it is
+ /*assign elements in first row as it is*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
out[col_cnt*row] = in1[col_cnt*row];
}
- //For second row onwards
+ /*For second row onwards*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
for ( row_cnt = 1; row_cnt < row; row_cnt++)
diff --git a/src/c/matrixOperations/cumprod/i8columncumproda.c b/src/c/matrixOperations/cumprod/i8columncumproda.c
index 4a5b45d..cf2156d 100644
--- a/src/c/matrixOperations/cumprod/i8columncumproda.c
+++ b/src/c/matrixOperations/cumprod/i8columncumproda.c
@@ -19,13 +19,13 @@ void i8columncumproda(int8 *in1, int row, int column, int8 *out)
{
int row_cnt, col_cnt = 0;
- //Assign elements in first column as it is
+ /*Assign elements in first column as it is*/
for(row_cnt = 0; row_cnt < row; row_cnt++)
{
out[row_cnt] = in1[row_cnt];
}
- //For second column onwards
+ /*For second column onwards*/
for (row_cnt = 0; row_cnt < row; row_cnt++)
{
for ( col_cnt = 1; col_cnt < column; col_cnt++)
diff --git a/src/c/matrixOperations/cumprod/i8rowcumproda.c b/src/c/matrixOperations/cumprod/i8rowcumproda.c
index ac5eebe..c2ecf19 100644
--- a/src/c/matrixOperations/cumprod/i8rowcumproda.c
+++ b/src/c/matrixOperations/cumprod/i8rowcumproda.c
@@ -19,12 +19,12 @@ void i8rowcumproda(int8 *in1, int row, int column, int8 *out)
{
int row_cnt, col_cnt = 0;
- //assign elements in first row as it is
+ /*assign elements in first row as it is*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
out[col_cnt*row] = in1[col_cnt*row];
}
- //For second row onwards
+ /*For second row onwards*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
for ( row_cnt = 1; row_cnt < row; row_cnt++)
diff --git a/src/c/matrixOperations/cumprod/scolumncumproda.c b/src/c/matrixOperations/cumprod/scolumncumproda.c
index d720eb2..e97ca90 100644
--- a/src/c/matrixOperations/cumprod/scolumncumproda.c
+++ b/src/c/matrixOperations/cumprod/scolumncumproda.c
@@ -19,13 +19,13 @@ void scolumncumproda(float *in1, int row, int column, float *out)
{
int row_cnt, col_cnt = 0;
- //Assign elements in first column as it is
+ /*Assign elements in first column as it is*/
for(row_cnt = 0; row_cnt < row; row_cnt++)
{
out[row_cnt] = in1[row_cnt];
}
- //For second column onwards
+ /*For second column onwards*/
for (row_cnt = 0; row_cnt < row; row_cnt++)
{
for ( col_cnt = 1; col_cnt < column; col_cnt++)
diff --git a/src/c/matrixOperations/cumprod/srowcumproda.c b/src/c/matrixOperations/cumprod/srowcumproda.c
index d2f5db8..cab4e44 100644
--- a/src/c/matrixOperations/cumprod/srowcumproda.c
+++ b/src/c/matrixOperations/cumprod/srowcumproda.c
@@ -19,12 +19,12 @@ void srowcumproda(float *in1, int row, int column, float *out)
{
int row_cnt, col_cnt = 0;
- //assign elements in first row as it is
+ /*assign elements in first row as it is*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
out[col_cnt*row] = in1[col_cnt*row];
}
- //For second row onwards
+ /*For second row onwards*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
for ( row_cnt = 1; row_cnt < row; row_cnt++)
diff --git a/src/c/matrixOperations/cumprod/u16columncumproda.c b/src/c/matrixOperations/cumprod/u16columncumproda.c
index 3f23bd7..7b3c2d8 100644
--- a/src/c/matrixOperations/cumprod/u16columncumproda.c
+++ b/src/c/matrixOperations/cumprod/u16columncumproda.c
@@ -19,13 +19,13 @@ void u16columncumproda(uint16 *in1, int row, int column, uint16 *out)
{
int row_cnt, col_cnt = 0;
- //Assign elements in first column as it is
+ /*Assign elements in first column as it is*/
for(row_cnt = 0; row_cnt < row; row_cnt++)
{
out[row_cnt] = in1[row_cnt];
}
- //For second column onwards
+ /*For second column onwards*/
for (row_cnt = 0; row_cnt < row; row_cnt++)
{
for ( col_cnt = 1; col_cnt < column; col_cnt++)
diff --git a/src/c/matrixOperations/cumprod/u16rowcumproda.c b/src/c/matrixOperations/cumprod/u16rowcumproda.c
index 645c814..23b452c 100644
--- a/src/c/matrixOperations/cumprod/u16rowcumproda.c
+++ b/src/c/matrixOperations/cumprod/u16rowcumproda.c
@@ -19,12 +19,12 @@ void u16rowcumproda(uint16 *in1, int row, int column, uint16 *out)
{
int row_cnt, col_cnt = 0;
- //assign elements in first row as it is
+ /*assign elements in first row as it is*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
out[col_cnt*row] = in1[col_cnt*row];
}
- //For second row onwards
+ /*For second row onwards*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
for ( row_cnt = 1; row_cnt < row; row_cnt++)
diff --git a/src/c/matrixOperations/cumprod/u8columncumproda.c b/src/c/matrixOperations/cumprod/u8columncumproda.c
index 7c9a66a..3a6ee92 100644
--- a/src/c/matrixOperations/cumprod/u8columncumproda.c
+++ b/src/c/matrixOperations/cumprod/u8columncumproda.c
@@ -19,13 +19,13 @@ void u8columncumproda(uint8 *in1, int row, int column, uint8 *out)
{
int row_cnt, col_cnt = 0;
- //Assign elements in first column as it is
+ /*Assign elements in first column as it is*/
for(row_cnt = 0; row_cnt < row; row_cnt++)
{
out[row_cnt] = in1[row_cnt];
}
- //For second column onwards
+ /*For second column onwards*/
for (row_cnt = 0; row_cnt < row; row_cnt++)
{
for ( col_cnt = 1; col_cnt < column; col_cnt++)
diff --git a/src/c/matrixOperations/cumprod/u8rowcumproda.c b/src/c/matrixOperations/cumprod/u8rowcumproda.c
index 937d0a4..61b214c 100644
--- a/src/c/matrixOperations/cumprod/u8rowcumproda.c
+++ b/src/c/matrixOperations/cumprod/u8rowcumproda.c
@@ -19,12 +19,12 @@ void u8rowcumproda(uint8 *in1, int row, int column, uint8 *out)
{
int row_cnt, col_cnt = 0;
- //assign elements in first row as it is
+ /*assign elements in first row as it is*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
out[col_cnt*row] = in1[col_cnt*row];
}
- //For second row onwards
+ /*For second row onwards*/
for (col_cnt = 0; col_cnt < column; col_cnt++)
{
for ( row_cnt = 1; row_cnt < row; row_cnt++)