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

📄 connectivity.m

📁 best routing protocol
💻 M
字号:
function connectivity(node_coord, routing_table, dests)%visualize the connectivity of routing path to all the destinationsif size(dests,1)~=1 | size(node_coord,2)~=2  error('wrong format in dests or node_coord');endn = size(node_coord,1);hold onfor dest=dests    reachable = find(routing_table(:,dest));    for i=reachable'      j = routing_table(i,dest);      plot([node_coord(i,1) node_coord(j,1)], [node_coord(i,2), node_coord(j,2)]);    endend

⌨️ 快捷键说明

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