Filtering values from a curve

2 次查看(过去 30 天)
I have a curve x vs. y and I'm reading into Matlab through excel (xlsread).
I want to filer some values off. I want to filter the y (and corresponding x of course) which are greater than a ceratin value (1500).
How can I achieve this please?
Please help...I shall be grateful

采纳的回答

Wayne King
Wayne King 2013-1-26
编辑:Wayne King 2013-1-26
Sounds like you want to remove y-values greater than a certain value.
One way:
idx = find(y>1500);
% now remove the y values and the corresponding x-values
y(idx) = [];
x(idx) = [];
Note that if your x-values were originally evenly-spaced, the above will alter that spacing. Not sure if that is important. There are other things you can do that will preserve the equal spacing. For example, you can set y-values greater than 1500 to NaN (not a number)
y(y>1500) = NaN;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by