I'm trying to design a Wiener filter in Matlab for a deconvolution problem but I'm having a lot of problems. I have a gaussian white noise process with a variance of 1.2 and a impulse response which has length two. Its values are g(0) = 5 and g(1) = 4. Later on in the process I try to determine Rxx(m). For this I need to calculate g(m)*g(-m) (convolution) and have been advised to use the xcorr function in Matlab but my results don't make sense. Can anyone help me with this xcorr function and with advice on how to use this impulse response in this? I have tried working with the fourrier transforms of g but this has been no help.
xcorr function with impulse response
1k Views Asked by Daan Wabeke At
1
There are 1 best solutions below
Related Questions in MATLAB
- How to open and read video stream in Matlab
- Interpolation and replace zeroes
- How can I fix my code to do line by line conditional statements in Matlab
- matlab crash during acquisition of pointgrey images
- Calling text file
- Apply gaussian filter on text
- re-plotting of data on same GUI axes in matlab
- Issue with nume1 in MATLAB
- Multiply two variables in Matlab with vpa - high precision
- ODE - Solving Parameter Dependent on Variable [Matlab]
- Need help in detecting multiple blobs
- How does TIC TOC in matlab work?
- Image based steganography that survives resizing?
- lowering computaional cost in finding the location of minimum distance
- FFT Filtering of signal
Related Questions in FILTERING
- SQL query: where array is in array
- Image 2x downsampling with Lanczos filter
- Simple Python Median Filter for time series
- Why doesn't this simple NSPredicate filter my array
- Get Exact Frequency From Digital Signal
- jquery filter chained select options
- Owl Carousel 2: filtering items, but keep the sort order using Javascript
- How to filter NSDictionary by value and create new NSDictionary from that?
- Spark: Filtering out aggregated data?
- Importing excel sheet
- Javascript plugin that mimics Google Sheets sort and filter functionality?
- PHP: What is the best way to create higher level query language to create criteria filter in yii
- Spreadsheet and address: how to filter based on a range
- Wrong column filtering for date column
- DataTable Filtering Issue
Related Questions in CONVOLUTION
- FFT Fast Convolution: How To Apply Window to minimize crackling
- Is there A 1D interpolation (along one axis) of an image using two images (2D arrays) as inputs?
- xcorr function with impulse response
- I got a error when running a github project in tensorflow
- Why Validation Error Rate remain same value?
- iOS: How to manually set a 2D Float data to MTLTexture or MPSImage?
- Compute mean squared, absolute deviation and custom similarity measure - Python/NumPy
- How to put an "arbitrary" operation into a sliding window using Theano?
- Why can't I train overfeat network with convolution layer 1x1
- Efficient way to calculate the "product" of a discrete convolution
- Implement a custom layer after a series of MPSCNNConvolution
- Make any keras network convolutional
- Why does my Sobel edge detection code not work?
- Convolution by multiplying list of numbers in memory, so an inverse convolution algorithm?
- How to use cross-validation method in Tensor-Flow
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The following code implements only a part of what I can see in the description. It generates the noise processes and does what is described in the first part. The autocorrelation is not calculated with the filter coefficients but with the actual signal.