Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Nx2 ベクトルがあります。ベクトルの各行は行列の座標です。例: Path を呼び出すベクトルは次のようになります。
Path=[1 2; 3 4; 5 6; 7 8;];
私の質問は、ベクトルにアクセスして x 座標と y 座標を取得するにはどうすればよいですか? Path(1) と書くと答えは 1 で、Path(2) の答えは 3 ですが、1 2、次に 3 4 などのペアを取りたい. ループで実行できますか? ありがとう!
これにより、すべての行が 1 つずつ表示されます。
for i=1:size(Path,1) Path(i,:) end
パスをプロットするだけの場合は、次を試してください。
plot(Path(:,1),Path(:,2))