C function for matching numeric vectors and calculating error / difference. This was used to detect difference between FFT results
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
all: main.out
|
|
|
|
main.out: main.c vec_match.c vec_match.h
|
|
gcc -o main.out main.c vec_match.c -I.
|
|
|
|
run: main.out
|
|
./main.out
|
|
|
|
clean:
|
|
rm -f *.out *.elf *.lst
|
|
|