我只想用for循环分配x坐标和y坐标。但它不像c#,c ++这样的另一种语言。这是我的代码:
A=[2,7,1,3,10];
B=[2,7,1,3,10];
c=1;
k=0;
f=0;
L=length (A);
for m=1:L-1
for n=m:L
if(A(m)./B(n)> 0.09 && A(m)./B(n)<c)
c=A(m)./B(n);
k=A(m);
f=B(n);
end
end
end
fprintf('the c value is %0.5f',c)
fprintf('the A(m) value is %0.5f',k)
fprintf('the B(n) value is %0.5f',f)
the c value is 0.10000
我该怎么做?
答案 0 :(得分:0)
var coordinate=[];
var x, y;
for (x=1; x <= 7; x += 1) {
coordinate[x] = [];
for (y=1; y <= 5; y += 1) {
coordinate[x][y] = "("+x+","+y+")";
}
}