代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/332178/12774407
m mallat1.m
%%%%%%%mallat algorithm%%%%%
clc;
clear;
%%%%original signal%%%%
f=100;%%frequence
ts=1/800;%%抽样间隔
N=1:100;%%点数
s=sin(2*ts*pi*f.*N);%%源信号
figure(1)
plot(s);%%%源信号s
title('原信号');
grid on;
www.eeworm.com/read/245849/12777375
m s_wplot_with_header.m
function aux=s_wplot_with_header(seismic,varargin)
% Function plots one or more header values above a seismic data set in
% wiggle-trace format
%
% Written by: E. R.: August 1, 2005
% Last updated: M
www.eeworm.com/read/245816/12779837
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/245816/12779928
m atoms.m
function [sig,locatoms]= atoms(N,coord);
%ATOMS Linear combination of elementary Gaussian atoms.
% [SIG,LOCATOMS] = ATOMS(N,COORD)
% generates a signal consisting in a linear combination of elementar
www.eeworm.com/read/245816/12779933
m plotifl.m
function plotifl(t,iflaws);
%PLOTIFL Plot normalized instantaneous frequency laws.
% PLOTIFL(T,IFLAWS) plot the normalized instantaneous frequency
% laws of each signal component.
%
% T : tim
www.eeworm.com/read/332054/12782783
m eyespic.m
%升余弦滚降系统的传输特性和功率谱及眼图
clear all
close all
clc
echo off
N=2^14; %采样点数
L=32; %每码元采样点数
M=N/L; %码元数
Rb=2; %码速率
Ts=1/Rb; %码元间隔
dt=Ts/L; %时域采样间隔
df=1/(N*dt); %频域采样间隔
T=N*dt; %截短时宽
Bs=N*
www.eeworm.com/read/144565/12785191
m picpcorrelate.m
% 定义周期相关函数的值和图形
function p=picpcorrelate(a,b)
n=length(a);
for m=0:n-1
p(m+1)=correlate(a,b,m);
end
m=0:n-1;
plot(m,p);
www.eeworm.com/read/144514/12786831
m graphics.m
%图形处理
t=0:0.05:5;
x=sin(t*2);
plot(t,x)
y=cos(5*t);
hold on
plot(t,y,'--r*')
hold off
subplot(2,2,1)
plot(t,x)
subplot(2,2,2)
plot(t,t.*t)
subplot(2,2,3)
plot(t,y)
subplot(2,2,4)
plot(t
www.eeworm.com/read/144399/12796868
m easyplot.m
% easyplot: Script to plot data in file xy.dat
% Load the data
D = load('xy.dat'); % D is matrix with two columns
x = D(:,1); y = D(:,2); % x in 1st column, y in 2nd column
plot(x,
www.eeworm.com/read/144399/12796911
m plotdata.m
function plotData(fname)
% plotData Plot (x,y) data from columns of an external file
%
% Synopsis: plotData(fname)
%
% Input: fname = (string) name, including extension, of the
%