代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/444759/7607485
m 6-7.m
%例程6-7 方波信号的连续小波变换
% e.g.6-7.m for example6-7;
%test the function of cwt
clear all;
t=0:.01*pi:10*pi;
x=square(t,80); %The duty cycle(占空比) is 80% of the period in which the signal is positive
www.eeworm.com/read/444759/7607515
m 3-9.m
%例程3-9 产生非周期方波
t=-1:1/1E3:1;
x=tripuls(t,0.3);
y=tripuls(t,0.3,-0.8);
subplot(2,1,1);
plot(t,x);
subplot(2,1,2);
plot(t,y);
www.eeworm.com/read/444712/7608052
m call_dlp2bs.m
%call_dlp2bs.m 数字低通滤波器到数字带阻滤波器
function []=call_dlp2bs(h1,h2)
axes(h1);hold off
plot([0,0],[-1.2,1.2],'linestyle','-.','color','g');hold on
plot([-2,2],[0,0],'linestyle','-.','color','g');axis([-1
www.eeworm.com/read/444712/7608056
m call_dlp2bp.m
%call_dlp2bp.m 数字低通滤波器到数字带通滤波器
function []=call_dlp2bp(h1,h2)
axes(h1);hold off;
plot([0,0],[-1.2,1.2],'linestyle','-.','color','g');hold on
plot([-1.2,1.2],[0,0],'linestyle','-.','color','g');axi
www.eeworm.com/read/444595/7611147
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/444595/7611162
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/444331/7613908
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/444297/7614367
m vedicentro.m
% image acquisition
a=imread('101_1.tif');
% rotate image
a=imrotate(a,-20);
% write to a BitMap image the rotated mage
img=double(a);
% if image sizes are not 8*K where K is an integer
% image
www.eeworm.com/read/444212/7616521
m iir_rls.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% rlsalgo : IIR RLS algorithm demo
% Author : Tamer Abdelazim Mellik
% Contact information :
%Department of Electrical & Comp
www.eeworm.com/read/444138/7617668
m plotaiwa.m
%绘制路径示意图 R纪录最短路径
function plotaiwa(a,R)
scatter(a(:,1),a(:,2),'x')
hold on
plot([a(R(1),1),a(R(13),1)],[a(R(1),2),a(R(13),2)])
hold on
for i=2:length(R)
x0=a(R(i-1),1);
y0=a(R(i-1),2);