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 等。我可以循环执行吗?谢谢!
这将一一为您提供每一行。
for i=1:size(Path,1) Path(i,:) end
如果您只想绘制路径,请尝试:
plot(Path(:,1),Path(:,2))