Statistical analysis of discrete signals
조회 수: 2 (최근 30일)
이전 댓글 표시
hi everyone,
i am working on a project where i have to acquire signals from the sensors and do some statistical analysis. i want to know how can we find the amplitude distribution of a discrete signal.
댓글 수: 0
채택된 답변
Walter Roberson
2011년 12월 26일
Sounds like a job for hist() against the original (amplitude) signal.
댓글 수: 5
Walter Roberson
2011년 12월 27일
The A/D convertor will compare the voltage to a pre-selected voltage range (adjustable in some convertors, fixed in others) and will scale the results to an integer value, usually 8 or 10 or 12 bits. It is those integer values that are what your program receives, and those values are proportional to the voltage (but possibly have been shifted so that negative and positive voltages could both be represented.) Do you need to calculate back to the voltages, or is it sufficient to work with the scaled (and possibly shifted) proportional values?
If you can work with the scaled and shifted values (which will very likely be the case), then you can use hist() or histc() on the input values.
Have you read the documentation for hist() and histc() ?
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Measurements and Feature Extraction에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!