代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/345494/11812767
m ex2308.m
%例23-8 叠加绘图模式
x=-5:5;
y1=randn(size(x));
y2=normpdf(x);
subplot(2,1,1)
hold
hold %切换子图1的叠加绘图模式到关闭状态
plot(x,y1,'b')
plot(x,y2,'r') %新的绘图指令冲掉了原来的绘图结果
title('hold off mode')
subplot(2,1,2)
hol
www.eeworm.com/read/345494/11812813
m ex2332.m
%例23-32 羽毛图
x=rand(1,5)
y=rand(1,5)
subplot(2,1,1)
plot(x,y,'ro')
subplot(2,1,2)
grid on
feather(x,y)
www.eeworm.com/read/345494/11812936
m mcc_test.m
function y=mcc_test(t)
t=0:0.001:t;
y=sin(2*pi*50*t);
plot(y);
www.eeworm.com/read/259112/11820080
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/345213/11826052
r chapter3.r
## Example 3.1 Gabor Functions
## Generate a Gabor function at given frequency (here 0.1 Hz), for a
## sampling frequency (here 1 Hz), location (here 256) and scale
## (here 25):
gab
www.eeworm.com/read/156094/11828254
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/156094/11828275
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/155843/11844026
m exa11041.m
%-----------------------------------------------------------------
% exa110401.m 产生db2~db9正交小波的尺度函数和小波函数
%------------------------------------------------------------------
clear;
iter=8
[phi2,
www.eeworm.com/read/155843/11844127
m exa120501.m
%--------------------------------------------------------------------------
% exa120501.m, for example 12.5.1 and fig12.5.3
%-----------------------------------------------------------------------
www.eeworm.com/read/155843/11844187
m exa010201b.m
%---------------------------------------------------------------------------------------
% exa010201b.m, for example 1.2.3
% 说明信号的子带分解;
%----------------------------------------------------------