代码搜索:plotting
找到约 1,607 项符合「plotting」的源代码
代码结果 1,607
www.eeworm.com/read/171238/9765101
m ip_02_03.m
% MATLAB script for Illustrative Problem 2.3.
echo on
rho=0.95;
X0=0;
N=1000;
X=gaus_mar(X0,rho,N);
M=50;
Rx=Rx_est(X,M);
% Plottin
www.eeworm.com/read/414455/11111245
m ip_02_03.m
% MATLAB script for Illustrative Problem 2.3.
clear
echo on
rho=0.95;
X0=0;
N=1000;
X=gaus_mar(X0,rho,N);
M=50;
Rx=rx_est(X,M);
%
www.eeworm.com/read/414455/11111256
m ss42.m
% MATLAB script for Illustrative Problem
echo on
rho_b=0:2:24; % rho in dB
for i=1:length(rho_b),
smld_err_prb(i)=ss_Pe42(rho_b(i)); % simulated error rate
end;
% Plotting commands follo
www.eeworm.com/read/414455/11111528
m ip_09_07.m
% MATLAB scripit for Illustrative Problem 9.7.
clear
echo on
rho_b=0:2:24; % rho in dB
for i=1:length(rho_b),
smld_err_prb(i)=ss_pe97(rho_b(i)); % simulated error ra
www.eeworm.com/read/268231/11148998
m ip_02_03.m
% MATLAB script for Illustrative Problem 3, Chapter 2.
echo on
rho=0.95;
X0=0;
N=1000;
X=gaus_mar(X0,rho,N);
M=50;
Rx=Rx_est(X,M);
% plotting
www.eeworm.com/read/268231/11149120
m ss42.m
% MATLAB script for Illustrative Problem
echo on
rho_b=0:2:24; % rho in dB
for i=1:length(rho_b),
smld_err_prb(i)=ss_Pe42(rho_b(i)); % simulated error rate
end;
% Plotting commands follow
www.eeworm.com/read/268231/11149135
m ip_09_07.m
% MATLAB scripit for Illustrative Problem 7, Chapter 9.
echo on
rho_b=0:2:24; % rho in dB
for i=1:length(rho_b),
smld_err_prb(i)=ss_Pe97(rho_b(i)); % simulated error rate
www.eeworm.com/read/413179/11164017
m bar_mesh5_2_1ele.m
function bar_mesh5_2_1ele
include_flags;
% Node: 1 2 3
x = [2.0 4.0 6.0 ]; % x coordinate
y = 2*x; % y is used only for plotting the bar
www.eeworm.com/read/413179/11164028
m bar_mesh5_2_4ele.m
function bar_mesh5_2_4ele
include_flags;
% Node: 1 2 3 4 5 6 7 8 9
%---------------------------------------------------
x = [2.0 2.5 3.0 3.5 4.0 4.5 5.0
www.eeworm.com/read/413179/11164036
m bar_mesh5_2_2ele.m
function bar_mesh5_2_2ele
include_flags;
% Node: 1 2 3 4 5
%----------------------------------
x = [2.0 3.5 5.0 5.5 6.0 ]; % x coordinate
y = 2*x;