extractor

版本 1.0.0.0 (1.6 KB) 作者: Jean-Luc Dellis
extracts data from a matrix following a value condition
931.0 次下载
更新时间 2007/7/10

查看许可证

newdata=extractor(data,cn,valinf,valsup)

extracts from DATA, all the lines whose the CNth column
has values included between valinf and valsup

DATA = matrix N X M
CN = Column Number (target)
VALINF = Low limit
VALSUP = High limit
NEWDATA = Extracted Matrix

Example:
a =

1 2 3
4 5 6
1 7 8
1 4 9
4 7 2
9 6 5

extract data with third column included between 0 and 5:
>> extractor(a,3,0,5)

ans =

1 2 3
4 7 2
9 6 5

extract data with first column exactly equal to 4:
>> extractor(a,1,4,4)

ans =

4 5 6
4 7 2

引用格式

Jean-Luc Dellis (2024). extractor (https://www.mathworks.com/matlabcentral/fileexchange/15519-extractor), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R14
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Signal Attributes and Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0

1/ improvement of the error checking
2/ logical indexing instead of the use of FIND