私は配列を持っています:
step1 = [0,0;
0,1;
1,1;
2,3;
3,4;
3,5;
3,6;
3,7;
4,7;
5,7;
6,7;
6,6;
6,5;
6,4;
6,3;
6,2;
5,1];
この配列をステップ実行して、行ごとに 0.1 ずつ増加する行と列の新しい配列を作成したいと考えています。これは私がしたことです:
z=1;
u=length(step1);
step_b4X = zeros(u,1);
step_b4Y = zeros(u,1);
while z <= length(step1)
step_b4X = step_presentX;
step_presentX(z,1) = step1(z,1);
step_b4Y = step_presentX;
step_presentY(z,1) = step1(z,2);
pathX = step_b4X:0.1:step_presentX;
pathY = step_b4Y:0.1:step_presentY;
z = z+1;
end
私はゼロを取得します。pathX = 0:0.1:0....pathY = 0:0.1:1 次の pathX = 0:0.1:1....pathY = 1:0.1:1... など