Adding and generation of poisson noise to a time varying signal
13 ビュー (過去 30 日間)
古いコメントを表示
Hi,
My questions is to do with addition of noise to a predefined signal.
Assume I have predefined a time_varying signal in array A. Now I like to add noise to this signal, I know that my noise follows a poisson process or is poisson in nature, I also know that my noise has a rms value of X.
I just like to know how I can generate and noise this type of noise.
Thanks, Arsalan.
0 件のコメント
採用された回答
Image Analyst
2013 年 1 月 5 日
What are the values of your signal? Do you know that with values of more than about 10, Poisson noise is well approximated by Gaussian noise? See Wikipedia. So you might be able to use Gaussian noise. If you think that it has the shape of Poisson noise, but the values are a lot more than 10, then you could use log-normal noise.
7 件のコメント
Image Analyst
2013 年 1 月 6 日
Well what about the poissrnd function that you said you were going to try (I don't have that)? And you may have a current that is some number of microamps, but an incoming photon gives just a pulse, doesn't it? It doesn't give a continuous stream of current. So you have to model that as a stochastic process. Sure it's a burst of current but it occurs in bursts and each burst is a stochastic event, so you can use rand() or poissrnd (I guess) for determining when the next pulse comes along. That would be a Poisson stochastic process. Now it's been almost 30 years since I took classes in detectors, reasons for their noise, and stochastic optical processes (from Eustace Dereniak, I'm sure you've heard of him), but I thought shot noise was an inherent characteristic of a sparse stream of photons, not something that you could add onto it. But you'd best ask your Professor.
その他の回答 (2 件)
Avi Silbiger
2014 年 12 月 3 日
I'm sure you already resolved the issue, but here is a short piece of code that simulates shot noise, for those who might need it in the future.
参考
カテゴリ
Help Center および File Exchange で Switches and Breakers についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!