代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/342139/12039544
txt rls.txt
%lms算法源程序
clear all
close all
%channel system order
sysorder = 5 ;
% Number of system points
N=2000;
inp = randn(N,1);
n = randn(N,1);
[b,a] = butter(2,0.25);
Gz = tf(b,a,-1);
%This f
www.eeworm.com/read/153036/12064779
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/153036/12064825
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/153011/12067290
m grnn.m
%绘制指数函数曲线
p=-1:0.05:1;
t=exp(-p);
plot(p,t);
grid;
title('exponential function');
xlabel('x');
ylabel('y');
figure;
%建立并训练网络
for i=1:5
net=newgrnn(p,t,i/10);
y(i,:)=sim(net,p);
en
www.eeworm.com/read/153011/12067299
m caldemo.m
function caldemo()
%% Main function
y1=1:0.01:10;
y2=y1.^2;
yy=rsp(y1,y2);
plot(y1,yy)
function y=rsp(y1,y2)
% Sub function
H1=y2./y1;
H2=y1./y2;
y=(H1+H2)/2;
www.eeworm.com/read/255577/12072870
m f_vector.m
function f_vector (x,y,dx,dy,len,color)
%F_VECTOR: Draw a vector on current plot
%
% Usage: f_vector (x,y,dx,dy,len,color)
%
% Inputs:
% x = x coordinate of start of vector
%
www.eeworm.com/read/341680/12073127
m examp7_17.m
opt=odeset; opt.RelTol=1e-6;
[t,x]=ode45('c7ximp',[0,10],[0; 0],opt); plot(t,x)
www.eeworm.com/read/341680/12073376
m examp8_33.m
f1=figure; f2=figure;
for n=5:2:20
figure(f1); [b,a]=butter(n,0.1); y2=filter(b,a,y1); plot(x,y2); hold on
figure(f2); [h,w]=freqz(b,a,100); plot(w,abs(h)); hold on
end
for wn=0.1:0.1:0
www.eeworm.com/read/341680/12073534
m examp10_22.m
[a,y,x]=wavefun('db6',2); subplot(141), plot(x,y)
[a,y,x]=wavefun('db6',4); subplot(142), plot(x,y)
[a,y,x]=wavefun('db6',6); subplot(143), plot(x,y)
[a,y,x]=wavefun('db6',8); subplot(144), plot(x,
www.eeworm.com/read/152929/12073671
m plotgcs.m
% plot reference vectors of GCS for a 2d ip space
cla;
%Axis([0,1,0,1]);
%Axis([,1,-0.2,1.2]);
hold on;
for i = 1:size(w,1)
text(w(i,1),w(i,2),int2str(i));
for j = i+1:size(w,1)
if (C(