如何使用for循环乘以(n)函数的数量?

时间:2012-04-29 22:39:37

标签: matlab

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);

1 个答案:

答案 0 :(得分:0)

您要迭代的 l m 列向量是?在这种情况下,你可以写:

for k=1:size(M1,1)
fprintf(fin,'      XY                   %g:     %g \n',M1(k,:);
end
fclose(fid);

如果你澄清了它会更好。