Finding a significant difference between two datasets

25 ビュー (過去 30 日間)
Harry
Harry 2017 年 3 月 10 日
コメント済み: Harry 2017 年 3 月 11 日
Hi,
I would like to find spikes in a dataset that are significantly different from a second dataset.
The picture attached shows two datasets and I would like to find the spike at 255 on the x-axis.
It would be helpful if I find these significant spikes automatically with a few commands.
I think it could be possible that I have to apply a tolerance or something that says only find data that has a greater difference than such and such (depending on the datasets that I compare).
So far I only could find the overall maximum y-value and its location but that's not what I want to find.
The output should be something like:
y = [max difference between two data sets]
x = [value at which significant difference occurs]

採用された回答

John Chilleri
John Chilleri 2017 年 3 月 10 日
編集済み: John Chilleri 2017 年 3 月 10 日
Hello,
Given data vectors a and b of equal length, you can use the following (assuming your x values are the default 1,2,...):
x = 1:length(a);
y = abs(b-a);
[y, ind] = sort(y,'descend');
x = x(ind);
Now the vector y contains the differences sorted from largest to smallest, and the x vector contains the corresponding x values.
Hope this helps!
  1 件のコメント
Harry
Harry 2017 年 3 月 11 日
That was really helpful!
Thank you!

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

その他の回答 (1 件)

Steven Lord
Steven Lord 2017 年 3 月 10 日
If you're using release R2017a take a look at the isoutlier function.

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by