How can I convert Matlab code to c#?

Help me to convert this C++ code to matlab code...?

  • /* convolution */ #ifndef CONVOLVE_H #define CONVOLVE_H #include <vector> #include <algorithm> #include <cmath> #include <math.h> #include "image.h" /* convolve src with mask. dst is flipped! */ static void convolve_even(image<float> *src, image<float> *dst, std::vector<float> &mask) { int width = src->width(); int height = src->height(); int len = mask.size(); for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) { float sum = mask[0] * imRef(src, x, y); for (int i = 1; i < len; i++) { sum += mask[i] * (imRef(src, __max(x-i,0), y) + imRef(src, __min(x+i, width-1), y)); } imRef(dst, y, x) = sum; } } } /* convolve src with mask. dst is flipped! */ static void convolve_odd(image<float> *src, image<float> *dst, std::vector<float> &mask) { int width = src->width(); int height = src->height(); int len = mask.size(); for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) { float sum = mask[0] * imRef(src, x, y); for (int i = 1; i < len; i++) { sum += mask[i] * (imRef(src, __max(x-i,0), y) - imRef(src, __min(x+i, width-1), y)); } imRef(dst, y, x) = sum; } } } #endif

  • Answer:

    Mmm try 'doc conv2', looks like basic 2D convolution.

mei at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.