⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 plot_mv_function.m

📁 these are the Mtlab functions to plot the figures in the book Communication system (by Haykin)
💻 M
字号:
%plot motion field from MV stored in two coloumns

function []=plot_MV_function(dy,dx,bsize,mvy,mvx);
[r,c]=size(mvy);
[x,y]=meshgrid(0:bsize:(c-1)*bsize,0:bsize:(r-1)*bsize);
x=x+bsize/2; y=y+bsize/2;
quiver(x,y,mvx,mvy,0);

axis ij
axis([0,dx-1,0,dy-1])

⌨️ 快捷键说明

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