How do I align and subtract two data sets?
조회 수: 8 (최근 30일)
이전 댓글 표시
MathWorks Support Team
2018년 8월 1일
편집: MathWorks Support Team
2024년 2월 5일
I would like to subtract one data from the other to get an insertion loss. By insertion loss I mean that I am running (2) test cases, one control system and one with equipment in the line. I want to get the difference in signal amplitude between the two tests. Hence by inserting the equipment into the system, what is the loss of signal amplitude. Having the difference (and later the quotient) will let me conclude how the equipment affects the system at each source pulsation frequency.
Is there a way to ensure I’m subtracting the correct amplitudes by linking them to the frequencies?
Even if the vectors were the same length, there is some variability in the frequency data since it was taken manually from the tachometer. I can’t be sure that sample 2000 is the same frequency on one run as sample 2000 on the next run, or even that I get a value for that frequency.
채택된 답변
MathWorks Support Team
2023년 12월 2일
편집: MathWorks Support Team
2024년 2월 5일
You may consider using the timeseries object in this case.
Run the below command in your MATLAB instance to access the release specific documentation on 'timeseries' object:
web(fullfile(docroot, 'matlab/ref/timeseries.html'))
For example.
% Associate the frequency with amplitude
>> ts1 = timeseries(mag',freq');
% Associate another frequency with amplitude
>> ts2 = timeseries(mag',freq'-0.02);
% Synchronize the frequency
>> [ts3, ts4] = synchronize(ts1,ts2,'Union');
% Plot the difference
>> plot(ts3.Time, ts3.Data-ts4.Data)
For more options on synchronizing the two vectors (interpolation method, tolerance, etc), refer to the following example.
Run the below command in your MATLAB instance to access the release specific documentation on the same:
web(fullfile(docroot, 'matlab/ref/timeseries.synchronize.html'))
Please follow the below link to search for the required information regarding the current release:
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with Signal Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!