I have been messing with this for a while now but have no clue what to change. The error is in line 4, any ideas?

 Réponse acceptée

Stephan
Stephan le 20 Sep 2018
Modifié(e) : Stephan le 20 Sep 2018

3 votes

Hi,
path = 'C:\Users\Stephan\Desktop';
filename = 'test.xlsx';
fullpath = [path, '\', filename];
data = xlsread(fullpath,'A1:B2');
is one possibility of solving this problem.
Also join would work:
path = "C:\Users\Stephan\Desktop";
filename = "test.xlsx";
fullpath = join([path, filename],"\");
data = xlsread(fullpath,'A1:B2');
Note that double quotes are used now.
Best regards
Stephan

1 commentaire

Anthony Voccia
Anthony Voccia le 20 Sep 2018
Thanks! I used the first one and modified data= and elong= which made them both work.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur App Building dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by