Findpeaks loop value not saving separately

1 回表示 (過去 30 日間)
Ramesh Bala
Ramesh Bala 2019 年 6 月 6 日
コメント済み: LO 2019 年 6 月 10 日
I'm using findpeaks and trying to save the AMP values separately.But my loop is saving only the last value even though it runs in a loop.So,instead of 2*101 value I,get the last value 1*101 ??
s=load ('36019.mat');
signal(1,1:length(s.ans))=s.ans;
s=load ('35772.mat');
signal(1,1:length(s.ans))=s.ans;
load t.mat
S = [1 2]
for k=1:1:length(S)
figure;
[PkAmp, PkTime] = findpeaks(signal(k,:),t);
end
  1 件のコメント
Ramesh Bala
Ramesh Bala 2019 年 6 月 10 日
Alright ! I found out that there is a difference in the matrix size and thus it possibly wont be grouped.
I would like to analyse the delay matrix between these and many points.how to do it?

サインインしてコメントする。

採用された回答

LO
LO 2019 年 6 月 10 日
not sure what you want to do but I try to guess.
you can use the function "diff" between elements of different matrices (for comparing elements having the same index, you can use another for loop)
  2 件のコメント
Ramesh Bala
Ramesh Bala 2019 年 6 月 10 日
Thanks for the reply.
I'm trying to find the delay matrix between the signal points.In this case 35772.at and 36019.mat.
I don't know which one to use either crosscorr?
LO
LO 2019 年 6 月 10 日
crosscorr will give you a general view on "all delays" possible, between your two signals (in the form of crosscorrelation indexes). Diff will give you the pairwise distances (differences between the actual signal values) between given points of the two signals. by default I think the function would calculate the difference between consecutive points in a single signal at a time (https://de.mathworks.com/help/matlab/ref/diff.html?searchHighlight=diff&s_tid=doc_srchtitle)
but you can use also a loop to compute pairwise comparisons of elements with the same index. another thing you could do is calculate the inter-element interval of each signal using diff and then compare the result of the two signals using the histogram function.
if you want to compare the two signals and all relative delays between all of their elements you have to use the crosscorrelation function, yes.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by