Hi,
I'm doing some FE modelling on MATLAB and comparing to results from a monte carlo simulation. As part of that I need to translate the results of the simulation correctly by doing a 4D convolution.
Currently I have my a struct called mesh that defines my working space. mesh.node is an N x 3 array of the x,y,z positions of each node N and I have my values at each node in a N x T array where T corresponds to each time bin.
I'm looking for an efficient way to convolve my node values with some other simalry structured values.
If we call the value at each node a response function g(x,y,z,t) and my other source function f(x,y,z,t) is there some way I could compute
without having to rearrange all my values into a 4D data-cube?
Thanks!