NAME

x_convolve_matrix - Convolves matrix with a vector in the x direction

SYNOPSIS

#include "m/m_convolve.h"

Example compile flags (system dependent):
  -DLINUX_386 -DLINUX_386_P4  
   -I/home/kobus/include
   -L/home/kobus/load/linux_386_p4 -L/usr/local/lib -L/usr/lib
  -lKJB         -llapack -lblas -lg2c          -lXext -lX11 


int x_convolve_matrix
(
	Matrix **out_mpp,
	const Matrix *in_mp,
	const Vector *mask_vp
);

DESCRIPTION

This routine convolves the matrix pointed to by in_mp with the vector mask_vp, putting the result into *out_mpp. If *out_mpp is NULL, then a matrix of the appropriate size is created, if it is the wrong size, then it is resized, and if it is the right size, the storage is recycled.

RETURNS

NO_ERROR on success, and ERROR on failure, with an appropriate error message being set.

DISCLAIMER

This software is not adequatedly tested. It is recomended that results are checked independantly where appropriate.

AUTHOR

Kobus Barnard

DOCUMENTOR

Kobus Barnard

SEE ALSO

gauss_convolve_matrix , convolve_matrix , y_convolve_matrix , convolve_vector , get_2D_gaussian_mask , get_1D_gaussian_mask