Sie verfolgen jetzt diese Einreichung
- Aktualisierungen können Sie in Ihrem Feed verfolgter Inhalte sehen.
- Je nach Ihren Kommunikationseinstellungen können Sie auch E-Mails erhalten.
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
Zitieren als
Jean-Luc Dellis (2026). extractor (https://de.mathworks.com/matlabcentral/fileexchange/15519-extractor), MATLAB Central File Exchange. Abgerufen .
Allgemeine Informationen
- Version 1.0.0.0 (1,63 KB)
Kompatibilität der MATLAB-Version
- Kompatibel mit allen Versionen
Plattform-Kompatibilität
- Windows
- macOS
- Linux
| Version | Veröffentlicht | Versionshinweise | Action |
|---|---|---|---|
| 1.0.0.0 | 1/ improvement of the error checking
|
