代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/320820/13417677
m chap4_4.m
%Define N+1 triangle membership function
clear all;
close all;
N=2;
x=0:0.1:100;
for i=1:N+1
f(i)=100/N*(i-1);
end
u=trimf(x,[f(1),f(1),f(2)]);
figure(1);
plot(x,u);
for j=2:N
www.eeworm.com/read/320820/13417679
m chap7_3.m
%RBF identification
clear all;
close all;
alfa=0.05;
xite=0.5;
x=[0,0]';
b=1.5*ones(4,1);
c=0.5*ones(2,4);
w=rands(4,1);
w_1=w;w_2=w_1;
c_1=c;c_2=c_1;
b_1=b;b_2=b_1;
d
www.eeworm.com/read/320460/13426665
m exercise2_1.m
clear
n=1000;
x=zeros(1,n);
y=zeros(1,n);
x(1)=0.001;
y(1)=0.001;
for k=1:n
x(k+1)=1.4-x(k)^2+y(k);
y(k+1)=0.2*x(k);
end
plot(x,y,'.')
www.eeworm.com/read/320406/13427446
txt white noise sequence.txt
for n=1:2000
xt(n)=unifrnd(0,1); %产生2000个(0,1)均匀分布白序列
end
subplot(2,1,1);
plot(xt),title('2000个(0,1)均匀分布的白噪声');
for i=1:5
for j=1:10
sc(j,i)=xt((i-1)*5+j);
end;
end;
disp([
www.eeworm.com/read/320130/13432658
m chap3_10.m
%PD Type Fuzzy Controller Design
clear all;
close all;
ts=0.001;
sys=tf(133,[1,25,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
e_1=0;
u_1=0;u_2=0;
y_1=0;y_2=0;
for k=1:1:10
www.eeworm.com/read/319970/13438216
m holder.m
function h=holder(tfr,f,n1,n2,t,pl)
%HOLDER Estimate the Holder exponent through an affine TFR.
% H=HOLDER(TFR,F,N1,N2,T) estimates the Holder exponent of a
% function through an affine time-frequenc
www.eeworm.com/read/319871/13440901
m exm07231_1.m
%exm07231_1.m
t=0:2*pi/99:2*pi;
x=1.15*cos(t);y=3.25*sin(t);
subplot(2,3,1),plot(x,y),axis normal,grid on,
title('Normal and Grid on')
subplot(2,3,2),plot(x,y),axis equal,grid on,title('Equal')
www.eeworm.com/read/319463/13451509
m kalman.m
clear all
A= [1 1 0 0;0 1 0 0;0 0 1 1;0 0 0 1];
B=[0.5 0; 1 0;0 0.5; 0 1];
C=[1 0 0 0;0 0 1 0];
q=1000;
Q=q*eye(2);
I=eye(4);
R=[1 0;0 1];
P(:,:,1)=[1 1 0 0;1 2 0 0;0 0 1 1;0 0 1 2];
W=randn(
www.eeworm.com/read/319449/13451672
m ofdmguifn.m
function OFDMguiFn(action)
% Consolidates all of the GUI callbacks into one main function
stringArray = [...
% Slide 1
'Welcome to the basic OFDM (Orthogonal Frequency '...
'Division Multipl
www.eeworm.com/read/319446/13451703
m ex1416.m
%例14-16 矩阵除法求解线性方程组
A=rand(3);a=rand(3,1);
A\a
rref([A a])
B=rand(2,3);b=rand(2,1);
B\b
rref([B b])
C=rand(4,3);c=rand(4,1);
x=C\c
b
C*x
plot(C*x,'ro')
hold on;
plot(b,'b*') %对C*x和b两组向量数据