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

📄 plot_abs_error.m

📁 best routing protocol
💻 M
字号:
function plot_abs_error(estimate, real, color)if length(real)==0  plot_cumu_matrix(estimate, color);  returnendmaxvalue = 99999999;real(find(real==Inf))=maxvalue;estimate(find(estimate==Inf))=maxvalue;rerr=abs(estimate-real);plot_cumu_matrix(rerr, color);%xlim([0 300]);%xlim([-1 1]);hold on

⌨️ 快捷键说明

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