extracting 20% of the data from a table

2 ビュー (過去 30 日間)
Salma fathi
Salma fathi 2022 年 6 月 14 日
コメント済み: Salma fathi 2022 年 6 月 15 日
i have the following data table that represents the curve that is is shown in the plot, at row number 9 in this table we have the peak point, th max point for the variable NE8, we would like to split our table in a way such that we extract 20% of the data points we have above the peak and 20% of the data below the peak and the peak point from that table? is there an easy way that would allow us to do that ?
thanks in advance

採用された回答

KSSV
KSSV 2022 年 6 月 14 日
T = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1031740/testProfile.txt') ;
plot(T.NE,T.GDALT)
x = T.NE ;
y = T.GDALT ;
peak_y = T.GDALT(9) ;
peak_x = T.NE(9) ;
% idx = y <= peak_y ;
idx = x <= peak_x ;
plot(x,y,'r',x(idx),y(idx),'*g',x(~idx),y(~idx),'*k')
legend('Curve','below peak','above peak')
  1 件のコメント
Salma fathi
Salma fathi 2022 年 6 月 15 日
Thank you, this was helpful.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by