I want to import multiple pulsed EPR data with different size (1st file: 1*2001pt, 2nd file: 1*1501pt, etc...) using "for" syntax.
Code: Select all
[F,DR]= uigetfile('*.DTA','MultiSelect','on');
cd(DR);
[a,b]=size(F);
for i=1:b
[B(:,i),spc(:,i)] = eprload(F{1,i});
end
"Unable to perform assignment because the size of the left side is 2001-by-1 and the size of the right side is 1501-by-1."
I will glad if you give such a bit of tiny advice.
Thank you in advance for your time.
With Regards,
Yujeong