代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/306883/13736624

m calcyclic.m

function scf=calcyclic(tfr); % calculate the scf of the signal by time-frequence expression % % tfr is a matrix of [f,t] [xrow,xcol]=size(tfr); scf=zeros(xrow,xcol); X=zeros(1,xrow); X1=zer
www.eeworm.com/read/306728/13739312

m ex5_8.m

t=0:0.01:2*pi; x=exp(i*t); y=[x;2*x;3*x]'; plot(y) grid on; %加网格线 box on; %加坐标边框 axis equal %坐标轴采用等刻度
www.eeworm.com/read/306709/13739942

m ls.m

function [x,y,zx,zy,XE,YE,XERB,YERB,XSTD,YSTD]=LS(T,M,d) %输入参数:观测噪声方差d,采样间隔T,蒙特卡洛次数M totalTime=800; %真实航迹产生 [x,y]=realTrack(T,totalTime); %随机初始化 randn('state',sum(100*clock)); D=d*d; N=ceil(
www.eeworm.com/read/306480/13744515

mdl bpsnrzbw.mdl

Model { Name "bpsnrzbw" Version 6.4 MdlSubVersion 0 GraphicalInterface { NumRootInports 0 NumRootOutports 0 ParameterArgumentNames "" ComputedModelVe
www.eeworm.com/read/306478/13744550

m dsb1.m

% dsb1.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;
www.eeworm.com/read/306478/13744566

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; %
www.eeworm.com/read/306478/13744612

m ip_03_01.m

% MATLAB script for Illustrative Problem 3.1. % Demonstration script for DSB-AM. The message signal is % +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3, and zero otherwise. clear echo on t0=.15;
www.eeworm.com/read/306478/13744616

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;
www.eeworm.com/read/306478/13744622

m ip_03_03.m

% MATLAB script for Illustrative Problem 3.3. % 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. clear echo on
www.eeworm.com/read/306478/13744626

m lssb.m

% lssb.m % Matlab demonstration script for LSSB-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;