summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/c/fMinus.c
blob: 6b4954e9894859b6f7ad38bbe763014e3e93f3d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/********************************
Author: Sravanthi Kota Venkata
********************************/

#include "sdvbs_common.h"

F2D* fMinus(F2D* a, F2D* b)
{
    F2D *c;
    int i, j, rows, cols;

    rows = a->height;
    cols = a->width;

    c = fMallocHandle(rows, cols);
    
    for(i=0; i<(rows*cols); i++)
        asubsref(c,i) = asubsref(a,i) - asubsref(b,i);

    return c;
}