How can I load multiple samples in a for loop
4 次查看(过去 30 天)
显示 更早的评论
I am trying to write a program that runs multiple samples but I can not figure out how to load a different sample for each iteration of the for loop.
For example:
sample1='/home/examplefilename.DTA';
sample2='/home/examplefilename2.DTA';
sample3='/home/examplefilename3.DTA';
q = inputdlg('How many samples were loaded?');
nsamples = str2double(q);
for h=1:nsamples;
[xd,yd,Pars]=eprload(sample(h));
xIndex = find(yd==max(yd(xd>=2600 & xd<=2850)), 1, 'first');
B = xd(xIndex);
v=Pars.MWFQ;
disp(sample(h))
end
This gives me the error message 'Undefined function or variable 'sample'.
0 个评论
采纳的回答
Joseph Cheng
2015-6-24
编辑:Joseph Cheng
2015-6-24
that is because sample is undefined but sample1 sample2 and sample3 is what you defined. how you're calling out that last line you should build sample{} as a cell array
sample{1}='/home/examplefilename.DTA';
sample{2}='/home/examplefilename2.DTA';
sample{3}='/home/examplefilename3.DTA';
q = inputdlg('How many samples were loaded?');
nsamples = str2double(q);
for h=1:nsamples;
%redacted
disp(sample(h))
end
1 个评论
Joseph Cheng
2015-6-24
and since we do this you don't need the inputdlg and you can get the size/length/numel of sample to calculate nsamples.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!