Selecting columns from an Excel file
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Shahar ben ezra
am 15 Dez. 2020
Kommentiert: Shahar ben ezra
am 16 Dez. 2020
Hi
When I read an excel file by "readtable" I get the following file as an example
I am interested in getting the frequency range of 102-105 MHz only
How can I cut the file?
Thanks:)
** The original file contains a lot of columns so I am interested in entering the frequency range
0 Kommentare
Akzeptierte Antwort
Cris LaPierre
am 16 Dez. 2020
Bearbeitet: Cris LaPierre
am 16 Dez. 2020
Use detectimportoptions and set the opts.SelectedVariableNames to be the variables (columns) you want to import. You can see several examples here. Here is another example from the readtable documenation page.
If your file contains a header row, those names can become the variable names. However, your specific request - having MATLAB figure out which columns to import by just entering a frequency range - is not native functionality. This is not to say you couldn't implement something, but it's on you to create the code to do that.
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!