how to read a value in matlab from an xls file
4 次查看(过去 30 天)
显示 更早的评论
Hey Dear All,
I would like to refer to the Values of an excel file in my code.
The value which I should read from the excel file is a function of two parametrs (PN and DN) which I include then on my matlab subroutine.

My code should be able to recive a DN and a PN and then give the revelant value.
I would appreciate to have your support.
0 个评论
采纳的回答
KSSV
2021-10-4
T = readtable('whatever.xls')
7 个评论
Walter Roberson
2021-10-4
Until you have read some of the file, you cannot know which row corresponds to which DN value.
And no, it is not possible to do something like
readmatrix(filename, 'column', 5, 'row', findrow('column', 1, 'eq', 0.3))
You need a database to make queries like that.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!