mathop.c
Go to the documentation of this file.00001 00006 /* AUTORIGHTS 00007 Copyright 2007 (c) Andrea Vedaldi and Brian Fulkerson 00008 00009 This file is part of VLFeat, available in the terms of the GNU 00010 General Public License version 2. 00011 */ 00012 00013 #include "mathop.h" 00014 00015 #define FLOAT_TYPE_FLOAT 1 00016 #define FLOAT_TYPE_DOUBLE 2 00017 00018 #undef FLOAT_TYPE 00019 #define FLOAT_TYPE FLOAT_TYPE_DOUBLE 00020 00021 00022 #undef FLOAT_TYPE 00023 #define FLOAT_TYPE FLOAT_TYPE_FLOAT 00024 00025 00026 float 00027 vl_dist_l2_f (float * dist, int M, int NX, int NY, 00028 float const* x, float const* y) ; 00029 00030