How to read an excel file in SVN repository (tortoise svn) using matlab?
8 次查看(过去 30 天)
显示 更早的评论
How can I access an excel file in a SVN repository using MATLAB. I want to read a specific value in the excel file that is stored in svn repository using MATLAB.
0 个评论
采纳的回答
Koundinya
2018-8-30
If it is a local svn repository, you can read data from any excel file using xlsread , providing the full file path as the argument
xlsread('C:\Users\username\svnRepositoryFolder\file.xlsx')
To read a specific value in the excel file, such as value in cell B2
xlsread('C:\Users\username\svnRepositoryFolder\file.xlsx','B2')
0 个评论
更多回答(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!