代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/137229/13338837
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/137229/13338965
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/136831/13359239
m pattern_plot.m
function pattern_plot(p,r,c,k)
x=[-.1 -.1 .1 .1 ]*5; %
y=[ .1 -.1 -.1 .1 ]*5; % Patch size
figure(k);
clf reset
figrect = get(gcf,'Position');
set(gcf,'Position',[figrect(1:2) 180 180]);
www.eeworm.com/read/136697/13365296
m plot_num.m
function plot_num(f1,f2,f3)
% plot_num(f1,f2,f3)
%
% Plotting three fuzzy numbers.
%
% Fuzzy numbers/intervalls:
% For a arithmetic with fuzzy numbers in LR-representation.
% A number is desribed
www.eeworm.com/read/136697/13365450
m plot_lset.m
function plot_Lset(Lset,col)
% plot_Lset(Lset,col)
%
% Plots contour function of random set that is given as a level set in
% ACUT. COL (string) determines the color of the plot.
%
% The set is assum
www.eeworm.com/read/136697/13365539
m plot_set.m
function plot_set(xset,yset)
% plot_set(xset,yset)
%
% Plotting fuzzy sets.
% If no matrix yset with membershipvalues is passed, a normal set is
% assumed. (ymin = 0 and ymax = 1)
% Several setform
www.eeworm.com/read/321972/13391531
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/321972/13391532
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/321972/13391537
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/321972/13391538
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]);