MATLAB: How to read an excel file in SVN repository (tortoise svn) using matlab

MATLAB

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.

Best Answer

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')