Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Addition of data from different files using a loop

1 vue (au cours des 30 derniers jours)
Joydeb Saha
Joydeb Saha le 19 Mai 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
clear
clc
[files,pathname]=uigetfile('*.hdf','MultiSelect','on');
cd ../../../../../../../../../..
cd(pathname)
files=files';
NumFiles=length(files);
%FMF_S=zeros(31,1);
for m=1:NumFiles
filename=files(m);
filename=char(filename);
data=hdfread(filename,'Ice_Water_Content_Profile'); %reading ice water dataset
lat=hdfread(filename,'Latitude');
lat=double(squeeze(lat(:,1)));
data(data==-9999)=nan; %removing fill value
data(data<0 | data>0.54)=nan; %removing out of range values
% data(data==0)=nan;
data(m,:)=data;
end
say i have three files, a.hdf anf b.hdf and c.hdf, i want the data should be added up in each case , and data matrix dimention remains the same. say for the first file data=846x399 double, when all the three files added up, matrix will remain the samr, i.e, 846x399 double but the three files data shall added up. how to do it with loop? I am getting "Subscripted assignment dimension mismatch." when i use my code,
  1 commentaire
Sindar
Sindar le 19 Mai 2020
data(m,:)=data;
takes all of data, and puts it into the first row of data. So, you're trying to fit an 846x399 matrix in a 1x399 column.

Réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by