plot_mv.m

来自「these are the Mtlab functions to plot th」· M 代码 · 共 9 行

M
9
字号
%plot motion field from MV stored in two coloumns

load MV.txt -ascii
[x,y]=meshgrid(0:16:351,0:16:287);
for (i=1:18) u(i,1:22)=MV((i-1)*22+1:i*22,1)'; v(i,1:22)=MV((i-1)*22+1:i*22,2)'; end
quiver(x,y,u,v);
axis ij
axis tight

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?