%% 输出及读取多个文件
% filepath='D:\new\';%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 输出多个文件
t_start = 1; % start time
t_end = 100; % ending time min
arr_rate = 50; % data arrival rate at HAP*******
for k=1:5
M = int2str(k);
N = '.txt.';
L = './';
output = [L M N];
arr_sample = Fun_proc_sample(arr_rate,t_end);
fid = fopen(output, 'w')
fprintf(fid,'%g\t',arr_sample);
fclose(fid);
end%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 读取多个文件
for j=1:5M = int2str(j);N = '.txt.';L = './';filename =[L M N];x(j,:)=load(filename);
end
x
选择题 题目: Do you still get free plastic bags from the supermarkets? Things have changed. China has banned free plastic bags at shops and supermarkets, and people have to pay for using plastic bags. The rule started on June 1. It came becaus…