summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/matrixOperations/magnitude/u8magna.c
blob: 7f5df58241cbfa775589288e13591dac25e3aece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* SCilab2C FOSSEE IIT BOMBAY */



#include "matrixMagnitude.h"

uint8 u8magna(uint8* in, int rows, int cols){
	int i=0,j=0;
	uint8  out=0, colSum=0;
	
	/* Other method : 
		drowsuma(in,rows,cols,temp);
		out=max(temp,cols);
	but we have to malloc a array */
		
	if ((rows==1)||(cols==1)){
		for(i=0;i<cols*rows;i++){
			out += dmagns(in[i]);
		}
	}
	else{		
		for(i=0;i<cols;i++){
			colSum = 0;
			for(j=0;j<rows;j++){
				colSum += dmagns(in[i*rows+j]);
			}
			if (colSum>out) out=colSum;
		}
	}
	return out;
}