Filter löschen
Filter löschen

How to find out how many colums are in matrix?

2 Ansichten (letzte 30 Tage)
hawk5577
hawk5577 am 22 Nov. 2018
Kommentiert: hawk5577 am 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

Akzeptierte Antwort

Bruno Luong
Bruno Luong am 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

Weitere Antworten (1)

Geoff Hayes
Geoff Hayes am 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);

Kategorien

Mehr zu Time Series Objects finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by