Reading specific Cell in Excel
87 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to read a certain cell in Excel with matlab.(B2)
I am then going to use this in an if statement.
Please advise
0 Kommentare
Antworten (3)
Lotus Kannan
am 14 Mär. 2017
%% x only reads B column values from the excel
filename='example.xlsx';
x = xlsread(filename,'B:B');
Shirin Mozaffari
am 18 Jul. 2018
for example you wanna read cell A2. This is what you should do: cell = xlsread(fileName,'A2:A2')
2 Kommentare
NAFTALI HERSCOVICI
am 29 Mai 2022
Is there any way to use the cell indices rather than letters to specify columns?
Like in excel the range can be defined as Range(cells(2,1),cells(2,1)) instead of Range("a2:a2")
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!