필터 지우기
필터 지우기

How to extract data out of coi of wcoherence?

조회 수: 8 (최근 30일)
Hashini Wanniarachchi
Hashini Wanniarachchi 2022년 10월 18일
답변: Shubham 2023년 8월 30일
How to ignore data out of coi (data outside white dashed lines) and just quantify high magnitiude data discarding coi data?

답변 (1개)

Shubham
Shubham 2023년 8월 30일
Hey Hashini Wanniarachchi,
To extract the data points outside the region bounded by coi, you can simply compare the y-coordinates at a particular time stamp of the values present in the coherence matrix and coi vector.
The pseudocode could look like:
% Perform wavelet coherence analysis
[wcoh, wcs, period, coi] = wcoherence(x, y);
% Get the size of the coherence matrix
[rows, cols] = size(wcoh)
% Identify data points outside the cone of influence
coi_indices = zeros(rows, cols);
for i = 1:rows
for j = 1:cols
if wcoh(i,j) < coi(j)
coi_indices(i, j) = 1; % Data point outside the COI (mark that index)
end
end
end
Hope this helps!

카테고리

Help CenterFile Exchange에서 Wavelet Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by