berplot.m
来自「这个程序主要是实现空时编码的matlab编解码仿真。」· M 代码 · 共 41 行
M
41 行
function []=berplot(ebno,circle,triangle_d,square,diamond,triangle_u,plus)% []=berplot(ebno,red,green,blue,black)%% Variable: Explanation:% % ebno - SNR-range over which to plot% circle - simulation which will be plotted with circles % triangle_d - -''- triangles(down)% square - -''- squares% diamond - -''- diamond% triangle_u - -''- triangles(up) % plus - -''- plus%% Short Theoretical Background for the Function:% % plots six different simulations in different shapes%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% Function part of simulation for Space-Time%%% coding project, group Grey-2001.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Author: Fredrik Hansson% Date: 2001-04-04% Version: 1.0% Revision (Name & Date & Comment):% 1.1 FH 2001-05-21 rev: shapes instead of colours%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%figure(1)semilogy(ebno,circle,'bo-')hold onsemilogy(ebno,triangle_d,'gv-')semilogy(ebno,square,'rs-')semilogy(ebno,diamond,'kd-')semilogy(ebno,triangle_u,'k^-')semilogy(ebno,plus,'k+-')hold off
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?