Effacer les filtres
Effacer les filtres

How to find out how many colums are in matrix?

2 vues (au cours des 30 derniers jours)
hawk5577
hawk5577 le 22 Nov 2018
Commenté : hawk5577 le 22 Nov 2018
[filename filepath]=uigetfile('*.xlsx','multiselect','on')
length(filename)
How to find out how many columns or length (what is better?) are in the matrix [filename]?
If I select 2 files (test0.xlsx and test1.xlsx) my ans = 2
If I select 1 file (test1.xlsx) my ans is 10, sth its wrong ;/
*I just want to do a script that will detect, maybe someone have good idea for that :)
if I have 1 selected file
something1
else I have 2 selected files
something2
end
Thanks for help

Réponse acceptée

Bruno Luong
Bruno Luong le 22 Nov 2018
if ischar(filename) % you select 1 file
something1
else % your filename is cell of char/string % I have 2 selected files
something2
end

Plus de réponses (1)

Geoff Hayes
Geoff Hayes le 22 Nov 2018
hawk5577 - use size to determine the dimensions in your matrix. Since you are interested in the number of columns, then
numFiles = size(filename, 2);
  1 commentaire
hawk5577
hawk5577 le 22 Nov 2018
ans=10
I think it counts letters ;/

Connectez-vous pour commenter.

Catégories

En savoir plus sur Time Series Objects dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by