How to filter data corresponding to a limit?
Show older comments
I am trying to filter out temperatures above and below 58oF (limit), then use the filtered data for further coding (trying to evaluate heat transfer in a heat exchanger at temperatures above and below the limit)
example :
T2 = ([10 11 17 18])*9/5 + 32;
limit = (14.5*9/5)+32;
x = find(abs(T2)<limit)
y = find(abs(T2)>limit)
Q_before = m_return_air * Cp_air .* (T3 - x)
Any tips or help would be great. Thanks.
Tony
Accepted Answer
More Answers (0)
Categories
Find more on Digital Filter Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!