代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/130592/14182129
m plot_mvdr.m
function plot_mvdr(name)
eval(['load ' name]);
% test vectors for spatially sampled response
W_H = conj(W(Ndata, :));
st = -1 : 0.025 : 1;
est = exp(-j*pi*[0:(rp.p-1)]'*st);
www.eeworm.com/read/130592/14182137
m make_plot.m
function make_plot(v, w, rp, Nlevs, xlim, ylim, str1, str2)
% function make_plot(w, v, rp, Nlevs, xlim, ylim)
r0 = 1;
r1 = -(rp.a1/(1+rp.a2));
R = [r0 r1; r1 r0];
wo = [-rp.a1; -rp.a2];
www.eeworm.com/read/130592/14182207
m plot_mvdr.m
function plot_mvdr(name)
eval(['load ' name]);
% test vectors for spatially sampled response
W_H = conj(W(Ndata, :));
st = -1 : 0.025 : 1;
est = exp(-j*pi*[0:(rp.p-1)]'*st);
www.eeworm.com/read/130592/14182215
m plot_p.m
% remake figure 5.17
figure
load run5;plot(mean(Wx'), '--'); hold on
mu=rp.mu; n=1:5000;
a=-0.99; lambda=abs(a); Ew1=-a+a*(1-mu*lambda).^n;
a=0.99; lambda=abs(a); Ew2=-a+a*(1-mu*lambda).^n;
www.eeworm.com/read/232704/14184678
m plot511.m
function plot511
figure(1)
t=1:0.1:10;
y=sin(t);
plot(y)
figure(2)
y= [0 1 2;2 3 4;5 6 7]
plot(y)
figure(3)
x=[1:1:100];
y=[2:2:200];
z=x+y.*i;
plot(z)
figure(4)
x=0:0.1:10;
y=sin
www.eeworm.com/read/232704/14184746
m plot3521.m
function plot3521
figure(1)
t=0:pi/50:10*pi;
plot3(cos(t),sin(t),t)
figure(2)
t=[0:pi/100:2*pi];
x=[sin(t) sin(t)];
y=[cos(t) cos(t)];
z=[(sin(t)).^2+(cos(t)).^2 (sin(t)).^2+(cos(t)).^2+1
www.eeworm.com/read/232704/14184817
m test_plot.m
function test_plot
t = 0:pi/50:10*pi;
plot3(sin(t),cos(t),t)
axis square; grid on
www.eeworm.com/read/232704/14185062
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/232704/14185240
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/232704/14185246
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