代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/409883/11308359
m plot_input.m
%Plot ddc test waveform
fddc_in = fft(ddc_in(1:8192)); %need high resolution fft to resolve peaks
plot(20*log(abs(fddc_in(400:600)/max(abs(fddc_in))))) %plot just the section we want to see
www.eeworm.com/read/409883/11308362
m plot_output.m
fyout = fft(yout(1:512)); %need high resolution fft to resolve peaks
plot(20*log(abs(fyout(1:256)/max(abs(fyout))))) %plot just the section we want to see
www.eeworm.com/read/264420/11315627
m gp_plot.m
% For generating residual error plots for GP journal paper.
%
% Need to edit ver_ga
ver_ga
prob_ga
% Which model ?
mod_num=2;
num_points=length(y_v);
figure(1)
hold off
clg
subplo
www.eeworm.com/read/264420/11315718
m opt_plot.m
% opt_plot : For generating a plot of optimum T1,T2 for
% varying values of CAF1 (for 2 CSTR)
clear all
T10=341;
T20=341;
options=foptions;
%options(1)=1;
%options(14)=
dQ
www.eeworm.com/read/263959/11335442
m stem_plot.m
x = [ 1 2 3 4 5 6];
y = [ 2 6 8 7 8 5];
stem(x,y);
title('\bfExample of a Stem Plot');
xlabel('\bf\itx');
ylabel('\bf\ity');
axis([0 7 0 10]);
www.eeworm.com/read/263959/11335445
m bar_plot.m
x = [ 1 2 3 4 5 6];
y = [ 2 6 8 7 8 5];
bar(x,y);
title('\bfExample of a Bar Plot');
xlabel('\bf\itx');
ylabel('\bf\ity');
axis([0 7 0 10]);
www.eeworm.com/read/263959/11335464
m compass_plot.m
x = [ 2 -2 1 3 -1];
y = [ 2 2 -2 1 -3];
compass(x,y);
title('\bfExample of a Compass Plot');
grid on
www.eeworm.com/read/263959/11335467
m stair_plot.m
x = [ 1 2 3 4 5 6];
y = [ 2 6 8 7 8 5];
stairs(x,y);
title('\bfExample of a Stair Plot');
xlabel('\bf\itx');
ylabel('\bf\ity');
axis([0 7 0 10]);
www.eeworm.com/read/263959/11335472
m test_plot.m
t = 0:0.1:10;
x = exp(-0.2*t) .* cos(2*t);
y = exp(-0.2*t) .* sin(2*t);
plot(x,y,'LineWidth',2);
title('\bfTwo-Dimensional Line Plot');
xlabel('\bfx');
ylabel('\bfy');
axis square;
grid on;
www.eeworm.com/read/263959/11335475
m barh_plot.m
x = [ 1 2 3 4 5 6];
y = [ 2 6 8 7 8 5];
barh(x,y);
title('\bfExample of a Horizontal Bar Plot');
xlabel('\bf\ity');
ylabel('\bf\itx');
axis([0 10 0 7]);