function box1( l, m)
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
%Define parameter
M1=[l, m];
fin=fopen('d://box1.txt','wt');
fprintf(fin,' XY %g: %g \n',M1);
答案 0 :(得分:0)
您要迭代的 l 和 m 列向量是?在这种情况下,你可以写:
for k=1:size(M1,1)
fprintf(fin,' XY %g: %g \n',M1(k,:);
end
fclose(fid);
如果你澄清了它会更好。