how to add non uniform Noise

4 views (last 30 days)
VINAY VERAMAREDDY
VINAY VERAMAREDDY on 3 Dec 2020
Answered: Ameer Hamza on 3 Dec 2020
I have tried generate non uniform noise matrix using matlab. To add it with source signal matrix 13 by 13. Please feel free to share your idea about non uniform noise matrix addition.

Answers (1)

Ameer Hamza
Ameer Hamza on 3 Dec 2020
What about multiplying the noise matrix with another function. For example
M = randn(13);
[~,~,Z] = peaks(13); % peaks is just used as an example
M_new = M.*Z;
subplot(2,1,1);
imagesc(M);
subplot(2,1,2);
imagesc(M_new);

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!