代码搜索:plotting

找到约 1,607 项符合「plotting」的源代码

代码结果 1,607
www.eeworm.com/read/439811/7701539

m ip_05_11.m

% MATLAB script for Illustrative Problem 5.11. clear echo on SNRindB=0:2:10; for i=1:length(SNRindB), % simulated error rate smld_err_prb(i)=smldp511(SNRindB(i)); echo off; en
www.eeworm.com/read/439811/7701549

m ip_02_08.m

% MATLAB script for Illustrative Problem 2.8. clear delta_w=2*pi/100; w=-pi:delta_w:pi; % one period of Sy Sy=1./(1.9025-1.9*cos(w)); % Plotting command follows. plot(w,Sy);
www.eeworm.com/read/244937/12830994

m ip_05_10.m

% MATLAB script for Illustrative Problem 5.10. clear echo on SNRindB=0:2:10; for i=1:length(SNRindB), % simulated error rate smld_err_prb(i)=smldp510(SNRindB(i)); echo off;
www.eeworm.com/read/244937/12831137

m ip_06_02.m

% MATLAB script for Illustrative Problem 6.2. clear echo on T=1; delta_f=1/(100*T); f=-5/T:delta_f:5/T; Sv=2*(cos(pi*f*T).*sinc(f*T)).^2; % Plotting command follows. plot(f,Sv);
www.eeworm.com/read/244937/12831154

m ip_05_11.m

% MATLAB script for Illustrative Problem 5.11. clear echo on SNRindB=0:2:10; for i=1:length(SNRindB), % simulated error rate smld_err_prb(i)=smldp511(SNRindB(i)); echo off; en
www.eeworm.com/read/244937/12831171

m ip_02_08.m

% MATLAB script for Illustrative Problem 2.8. clear delta_w=2*pi/100; w=-pi:delta_w:pi; % one period of Sy Sy=1./(1.9025-1.9*cos(w)); % Plotting command follows. plot(w,Sy);
www.eeworm.com/read/327948/13054091

m pr3_36_ss_demo_rake_receiver_combiningpathsignaleffect.m

%Problem 3.36; %Simulates the RAKE algorithm on the example of LFM bit pulse. clear all; close all; t=[1:3000]/500; N=length(t); %time scale; WD=40; %deviation of LFM bit pulse; S=exp(i*pi*WD*(
www.eeworm.com/read/323952/13306729

m ip_06_02.m

% MATLAB script for Illustrative Problem 6.2. echo on T=1; delta_f=1/(100*T); f=-5/T:delta_f:5/T; Sv=2*(cos(pi*f*T).*sinc(f*T)).^2; % Plotting command follows. plot(f,Sv);
www.eeworm.com/read/321160/13411455

m ip_06_02.m

% MATLAB script for Illustrative Problem 2, Chapter 6. echo on T=1; delta_f=1/(100*T); f=-5/T:delta_f:5/T; Sv=2*(cos(pi*f*T).*sinc(f*T)).^2; % plotting command follows plot(f,Sv);
www.eeworm.com/read/321160/13411474

m ip_05_10.m

% MATLAB script for Illustrative Problem 10, Chapter 5. echo on SNRindB=0:2:10; for i=1:length(SNRindB), % simulated error rate smld_err_prb(i)=smldP510(SNRindB(i)); echo off; end;