Converting Excel columns to a vector
56 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Daniel Jednorozec
le 13 Juil 2012
Réponse apportée : Sidra Khalid
le 22 Déc 2018
I am trying to access a specific column from different files and convert them into a matrix to be used later but I am running into problems and I'm not sure what I am doing wrong. Here is the part of my code I am trying to do it in, if anyone can tell me what I'm doing wrong I would greatly appreciate it.
for i = 1:3 % Loop over the files
a = xlsread(dataFiles{i}); % Load the data
c = a(:,3); % takes the third column from the file
hf(:,i) = c*(100^2); % converts the values and makes a matrix
end
Is it that I need to convert the cells to a matrix using cell2mat?
3 commentaires
Nirmal
le 13 Juil 2012
it means that the size of hf and size of c are not same. See the size of both hf and c using size() function.
Réponse acceptée
Nirmal
le 13 Juil 2012
hf=[];
for i = 1:3 % Loop over the files
a = xlsread(dataFiles{i}); % Load the data
c = a(:,3); % takes the third column from the file
hf =[hf c*(100^2)]; % converts the values and makes a matrix
end
This should work for you.
3 commentaires
Plus de réponses (4)
nanren888
le 13 Juil 2012
Are the columns always the same length?
If the dimensions, length of hf(:,i) & c are different you may need to consider
hf(ran,k) = c....
Like Conrad said, can you post the error message?
1 commentaire
Sidra Khalid
le 22 Déc 2018
this is the remaining part..anyone help me please..is convert it from excel to matlab or matlab to exicel?
0 commentaires
Voir également
Catégories
En savoir plus sur Data Import from MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!