Select samples from plot
3 ビュー (過去 30 日間)
古いコメントを表示
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1027500/image.png)
Hey to all, this is probably very easy, but im struggling with it, thanks in advance. I have the spectrum of a signal represented in the image above. I need to select samples from x axis(frequency) where y axis is superior to -140dB.
Basiccaly I want two things, select the samples from x where y is superior to -140 and select y samples where y is superior to -140. I was thinking of using the find function, right?
0 件のコメント
採用された回答
KSSV
2022 年 6 月 10 日
Let f be your x-axis i.e. frequency values and s be your y-axis i.e. specturm values.
idx = s > -140 ;
x1 = x(idx) ;
s1 = s(idx) ;
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!