readmatrix non-adjacent columns
18 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jacob Matson
le 16 Août 2020
Modifié(e) : Walter Roberson
le 5 Nov 2023
I would like to import 3 columns of a excel/csv file into a matrix. The columns I want are non-adjacent (Columns C, P, Q). I can import all the columns between C-Q adjacent columns like:
M=readmatrix('file.csv', 'Range', 'C:Q' );
However, I don't wan't columns D-O. I try things like this and it doesn't work.
M=readmatrix('file.csv', 'Range', 'C:C, C:Q' );
How do I only import the 3 colmns C, P, Q into 1 matrix?
0 commentaires
Réponse acceptée
Walter Roberson
le 17 Août 2020
Modifié(e) : Walter Roberson
le 5 Nov 2023
readmatrix accepts import options generated with detectImportOptions. You can use selectedVariables option to indicate which variables to read.
1 commentaire
Jose Carrasco
le 5 Nov 2023
I would further point out that import options available in one variable can be assessed before using opts.SelectedVariableNames by running detectImportOptions(variable) on it.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!