how do you filter time data using an analog filter without Simulink simulation?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have some oscilloscope data (a time vector and a data vector) and would like to simulate the results if I filter it using an analog filter. (Some of my data files may have varying sample rates). The mkfilt and other filter design tools are great, but most of the 'filter' commands run digital filters on data vectors. Other than running a simulink model and reading the time & data vectors in from the workspace, apply the filter, then saving the output, is there an easier method to run the through the continuous filter in an m-file script?
댓글 수: 0
답변 (1개)
Star Strider
2017년 5월 11일
You cannot use an analog filter in MATLAB or any other digital (discrete) environment. All continuous (s-space) filters are converted to discrete (z-space) filters, implicitly or explicitly.
You can only use an analogue filter as an analogue filter by realising it in hardware.
댓글 수: 2
Star Strider
2017년 5월 11일
If I remember correctly, Simulink is C code and then compiled at run time. That could explain the increased efficiency of Simulink blocks.
참고 항목
카테고리
Help Center 및 File Exchange에서 Electrical Block Libraries에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!