代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/244937/12831106
m ip_03_11.m
% MATLAB script for Illustrative Problem 3.11.
% Demonstration script for frequency modulation. The message signal
% is m(t)=sinc(100t).
clear
echo on
t0=.2; % sign
www.eeworm.com/read/244937/12831191
m ip_03_09.m
% MATLAB script for Illustrative Problem 3.9.
% Demonstration script for envelope detection. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3, and zero otherwise.
clear
echo on
www.eeworm.com/read/143830/12837793
m maanmian.m
clf,a=-20;eps0=1;
[x,y]=meshgrid(-10:0.2:10);
v=[-10 10 -10 10 -100 100];
colormap(gray)
z1=(x.^2-2*y.^2)+eps;
z2=a*ones(size(x));
r0=abs(z1-z2)
www.eeworm.com/read/143830/12837919
m untitled9.m
clf,t=0:0.1:3*pi;alpha=0:0.1:3*pi;
plot(t,sin(t),'r-');hold on;plot(alpha,3*exp(-0.5*alpha),'k:');
set(gca,'fontsize',15,'fontname','times New Roman'),
xlabel('it{t(deg)}');
ylabel('\it{magnitude}
www.eeworm.com/read/143830/12837949
m 9fen.m
clf,b=2*pi;x=linspace(0,b,50);
for k=1:9
y=sin(k*x);
subplot(3,3,k),plot(x,y),axis([0 2*pi -1 1])
end
www.eeworm.com/read/244870/12839361
m bp网络逼近.m
%BP网络逼近
clear;
clc;
z=0.50;%学习速率
a=0.05;%动量因子
w2=rands(6,1);
w2_1=w2;
w2_2=w2_1;
w1=rands(2,6);
w1_1=w1;
w1_2=w1;%?
dw1=0*w1;
x=[0,0]';
u1=0;
y1=0;
I=[0,0,0,0,0,0]';
Iout=[0,0,0,0,0,0
www.eeworm.com/read/143784/12843756
m bsamplecurve.m
x=[1 0 0 0.5 1.5 2];
y=[0 0 1 1.5 0.5 1.8];
plot(x,y,'bh');hold on;
plot(x,y);hold on;
n=length(x);
m=60;
for l=1:(n-2)
num=1; %第num个计算点(xx(num),yy(num))
for u=0:1/m:1
xx(n
www.eeworm.com/read/143784/12843761
m bezier.m
type=input('Input type number:');
switch type
case '2'
x=[1 2];
y=[1 3];
case '3'
x=[1 2 3];
y=[0 3 4];
case '4'
x=[1 3 4 5 7];
y=
www.eeworm.com/read/143706/12850013
m demglm2.m
%DEMGLM2 Demonstrate simple classification using a generalized linear model.
%
% Description
% The problem consists of a two dimensional input matrix DATA and a
% vector of classifications T. The da
www.eeworm.com/read/143520/12868486
m exm060231_1.m
t=0:2*pi/99:2*pi;
x=1.15*cos(t);y=3.25*sin(t); %y为长轴,x为短轴
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')
subp