Filter löschen
Filter löschen

Trouble reading in multiple xls files

1 Ansicht (letzte 30 Tage)
Adrienne
Adrienne am 12 Mai 2014
Kommentiert: BOB am 16 Mai 2014
clear all; % clears all variables from your workspace
close all; % closes all figure windows
clc; % clears command window
%%define number of trials
njump=81;
[1] input variables of trial data
%%%%%%%%%%%%%%%%%%%%%
%read in excel data in CSV format
for i=1:njump
data1=xlsread('Trial%i.csv','Trial%i','A1:E7000'); % jump data
end
^^^^^ this is what I have written, however it will not read in all of the data that I need. I have 81 trials but it will not read them in even when I have put a loop in. I am quite a novice in matlab and I don't understand what I am doing wrong. Can anyone help?

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 12 Mai 2014
Bearbeitet: Azzi Abdelmalek am 12 Mai 2014
data1 is overwriten each loop, use
for i=1:njump
data1{i}=xlsread(sprintf('Trial%i.csv',i),sprintf('Trial%i',i),'A1:E7000'); % jump data
end
If you want to clear all workspace variables use
clear
% without all
  10 Kommentare
Image Analyst
Image Analyst am 14 Mai 2014
Try using all 3 outputs of xlsread()
[numbersOnly, textOnly, everything] = xlsread(filename);
BOB
BOB am 16 Mai 2014
What shall I put this instead of?
This is the code I am trying currently:
:

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Image Analyst
Image Analyst am 12 Mai 2014

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by