代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/262450/11589185
m iir_rls.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% rlsalgo : IIR RLS algorithm demo
% Author : Tamer Abdelazim Mellik
% Contact information :
%Department of Electrical & Comp
www.eeworm.com/read/262288/11594422
m f12_1.m
%读信号
load noisbump
x = noisbump;
%3层小波包分解
t = wpdec(x,3,'db2');
%显示小波包树结构
fig = plot(t);
www.eeworm.com/read/348290/11602783
m resplot.m
% RESPLOT.M (RESult PLOTing)
%
% This function plots some results during computation.
%
% Syntax: resplot(Chrom,IndAll,ObjV,Best,gen)
%
% Input parameters:
% Chrom - Matrix containing th
www.eeworm.com/read/348214/11605396
m exp2_4_.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
hold on %允许在同一坐标系下绘制不同的图形
plot(t,sin(t),'r:*')
plot(t,cos(t))
plot(t,-cos(t),'k')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
hold off %覆盖旧图
www.eeworm.com/read/348214/11605423
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/348205/11606481
m tianranqi.m
x=[95.0129,23.1139,60.6843,48.5982,89.1299,76.2097,45.6468,1.8504,82.1407,44.4703,61.5432,79.1937,92.1813,73.8207,17.6266,40.5706,93.547,91.6904,41.027,89.365,5.7891,35.2868,81.3166,0.9861,13.8891,20.
www.eeworm.com/read/262062/11608419
m timu.m
x=[1 2];
y=[2 3];
ydot=[1 -1];
xi=1:0.1:2;
m=length(xi);
for i=1:m;
z(i)=Hermite_wise(x,y,ydot,xi(i));
end
z
plot(xi,z)
www.eeworm.com/read/158463/11613218
m am.m
% am.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15; % sig
www.eeworm.com/read/158463/11613225
m dsb2.m
% dsb2.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is m(t)=sinc(100t).
echo on
t0=.2; % signal duration
ts=0.001; % sampling interval
fc=250; % carrier
www.eeworm.com/read/158463/11613236
m am_dem.m
% am-dem.m
% Matlab 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.
echo on
t0=.15;