代码搜索:plot

找到约 10,000 项符合「plot」的源代码

代码结果 10,000
www.eeworm.com/read/339042/7148791

m bartlett_zfj.m

%产生信号序列 n=linspace(-pi,pi,1024); xn=2*sin(n*40)+cos(n*100); figure,plot(xn); title('Input Signal'); %计算序列的DFT及PSD M=64; L=length(n)/M; Pbw=zeros(1,M); for i=1:L for j=1:M x(j)=x
www.eeworm.com/read/339042/7148793

m welch_zfj.m

%*************************************% % Welch Method % %*************************************% %产生信号序列 n=linspace(-pi,pi,1024); xn=2*sin(n*40)+cos(n*100); figure,plot(x
www.eeworm.com/read/399015/7152008

m lms.m

clc; clear all; close all; hold off hh=5; M=300; w=randn(1,M); x=zeros(1,M); %期望响应 xx=zeros(1,M+4); xx(1,1)=0;xx(1,2)=0;xx(1,3)=0;xx(1,4)=0; for i=5:M+4 xx(1
www.eeworm.com/read/464508/7156896

m p320b.m

clear all;clc; i=1; Ts1=0.01; Ts2=0.05; Ts3=0.1; Dt=0.001; for t=0:Dt:1 n=t/Ts1; Time(i)=t; xt1(i) = sin(2*pi*n); i=i+1; end subplot(3,1,1) plot(Time,xt1,'k') for t
www.eeworm.com/read/464390/7164129

m askbpsk.m

%Run from editor Debug(F) %This m file(ASK.m) analyzes a coherent amplitute shift keyed(ASK) and a binary %phase shift keyed(BPSK) communication system. The receiver uses a correlator %(mixer-integ
www.eeworm.com/read/464335/7165242

m touchtone.m

function touchtone(arg) % TOUCHTONE Use FFT to synthesize and analyze telephone dialing % % The dual tone multi-frequency (DTMF) standard specifies that the tone % generated by a button on a tele
www.eeworm.com/read/464287/7166560

m a45.m

%首先装载一原始信号 load nearbrk; s=nearbrk; %=========================== %画出该信号的波形图 subplot(4,2,1); plot(s); Ylabel('s'); title('原始信号s和信号的近似a、细节d'); %=========================== %用小波
www.eeworm.com/read/464287/7166587

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/464287/7166679

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/464137/7168707

m bpsk.m

% Script file: LFM_Chirp.m % % Purpose: % To calculate and download an arbitrary waveform file that simulates a % pulsed signal with a linear fm chirp to the PSG vector signal generator. % % Rec