代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/403567/11514770
m chap3_1.m
%RBF function (2006/4/19)
clear all;
close all;
c=[-3 -1.5 0 1.5 3];
M=1;
if M==1
b=0.50*ones(5,1);
elseif M==2
b=1.50*ones(5,1);
end
h=[0,0,0,0,0]';
ts=0.001;
for k=1:1:20
www.eeworm.com/read/403498/11515283
m bp_nn.m
x1=0:0.1:pi/2;
x2=pi/2:0.1:pi;
x3=pi:0.1:1.5*pi;
x4=1.5*pi:0.1:2*pi;
y1=x1-pi/2+1;
y2=sin(x2);
y3=2-2/pi*x3;
y4=sin(x4);
x=[x1,x2,x3,x4];
y=[y1,y2,y3,y4];
ma=max(x);
mi=min(x);
len=leng
www.eeworm.com/read/402420/11535205
m plotcorana.m
function [z, a] = coranaEval(per)
i=0;
a=-0.9:per:0.9;
sz=size(a,2);
z=zeros(sz,sz);
for x=a
i=i+1; j=0;
for y=a
j=j+1;
z(i,j)=coranaFeval([x y]);
end
end
%Done!
%First let's look at it
www.eeworm.com/read/402420/11535222
m orderbasedexample.m
echo on
% This script shows how to use the ga using an order-based representation.
% You should see the demos for
% more information as well. gademo1, gademo2, gademo3
global distMatrix
% Setting the
www.eeworm.com/read/402283/11539700
m mm2605.m
% mm3605.m
x = linspace(0,2*pi,30);
y = sin(x);
z = cos(x);
plot(x,y,x,z)
box off % turn off the axes box
xlabel('Independent Variable X') % label horizontal axis
ylabel('Dependent Variables Y and Z')
www.eeworm.com/read/402283/11539730
m mm2201.m
% mm2201.m
N = 128; % choose a power of 2 for speed
t = linspace(0,3,N); % time points for function evaluation
f = 2*exp(-3*t); % evaluate the function and minimize aliasing: f(3) ~ 0
Ts = t(2)
www.eeworm.com/read/402283/11539779
m mm2609.m
% mm2609.m
x = linspace(0,2*pi,30);
y = sin(x);
z = cos(x);
a = 2*sin(x).*cos(x);
b = sin(x)./(cos(x)+eps);
subplot(2,2,1) % pick the upper left of a 2-by-2 grid of subplots
plot(x,y), axis([0 2*pi
www.eeworm.com/read/402283/11539806
m mm2706.m
% mm2706.m
[X,Y,Z] = peaks(30);
meshc(X,Y,Z) % mesh plot with underlying contour plot
title('Figure 27.6: Mesh Plot with Contours')
www.eeworm.com/read/402277/11539890
m multipath_doppler.m
%Comming from Multipath and Doppler effects and Models.Polytechnic
%University.2005
%wuguangfu
%20080918
%===============================================================
% Note that the rece
www.eeworm.com/read/402117/11542943
m fig9_20.m
clear all
eps = 0.0000001;
npts = 5000;
del = 1./ 5000.;
t = 0. : del : 1.;
% generate input sequence
inp = 1.+ t.^3 + .5 .*t.^2 + cos(2.*pi*5 .* t) ;
% read the intial estimate for the state v