代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/480149/6678119
m plot_snr.m
clear;
%用来仿真QAM的误bit率
snr=1:1:11;
%先来计算理论误bit率
error_theory=(1-(1-(2*(1-1/sqrt(16))*1/2*erfc(1/sqrt(2)*sqrt(3*4*10.^(snr/10)/(16-1))))).^2)/4;
%用理论的误bit率来决定需要仿真的点数
N=floor(1./error_theory)*100+1
www.eeworm.com/read/480149/6678122
m plot_astrology.m
function plot_astrology(a,b)
%画出星座图
figure(1)
subplot(1,1,1)
plot(a,b,'*');
axis([-5 5 -5 5]);
line([-5,5],[0,0],'LineWidth',3,'Color','red');
line([0,0],[-5,5],'LineWidth',3,'Color','red');
t
www.eeworm.com/read/480149/6678149
m my_plot.m
function my_plot(x,y)
% newplot返回当前坐标轴的句柄
cax = newplot;
LSO = ['- ';'--';': ';'-.'];
set(cax,'FontName','Times','FontAngle','italic')
set(get(cax,'Parent'),'MenuBar','none')
line_handles = lin
www.eeworm.com/read/478193/6721822
m shadow_plot.m
function g=shadow_plot(Orig,Mean,Std)
% ---------------------------------------------
% function g=shadow_plot(Orig,Mean,Std)
%
% Orig == the actual system (channel)
% Mean == the avg. over N
www.eeworm.com/read/478203/6721883
m shadow_plot.m
function g=shadow_plot(Orig,Mean,Std)
% ---------------------------------------------
% function g=shadow_plot(Orig,Mean,Std)
%
% Orig == the actual system (channel)
% Mean == the avg. over
www.eeworm.com/read/476406/6760995
f90 plot.f90
! 简单的绘图范例
! By Perng 1997/9/19
program Plot_Demo
! 使用Visual Fortran的绘图功能时需要module dflib
use DFLIB
implicit none
type(xycoord) :: t
integer :: result
call MoveTo(10,10,t) ! 把目前绘图的位置移动到坐
www.eeworm.com/read/410924/11265016
m plot_process.m
function plot_process(mu)
%Plot the mu's during an algorithm's execution
%Inputs:
% mu - The location of points
% No outputs
h = findobj('UserData','mu');
if (~isempty(h)),
delete(h
www.eeworm.com/read/410924/11265034
m plot_scatter.m
function plot_scatter(plot_features, plot_targets, fig, color)
% Make a scatter plot of the data
% Inputs:
% plot_features - Data features
% plot_targets - Data targets
% fig - Optional figu
www.eeworm.com/read/410378/11289691
m scatter_plot.m
function scatter_plot(m, type_of_mod, fc, fs, d)
%this program is to test the QAM and PSK modulation and demodulation
%techniques, with csatter plot and input / output signals. here
%type_of_modu
www.eeworm.com/read/410255/11295534
m plot_lte.m
% Plots the impulse responses, the PDPs, the correlation properties
% and the Doppler spectra of the MIMO channel stored in the global
% variable H produced by script example_MIMO.m. plot_MIMO.m als