代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/274644/10861304

asv youfa.asv

fs=1000; f=20; M=0.5; t=0:1/fs:M; n=length(t); s=sin(2*pi*f*t).*exp(-20*t); %st诱发响应:指数衰减正弦波 %plot(s); N=1000; xt=zeros(N,n); for i=1:N e=rand(1,n); a=rand(1,1)/20; h=zeros(1,fl
www.eeworm.com/read/348830/10865380

m timeseries3.m

%------------------------------------- % This script generates markovian data % based on the input data and gaussian % distribution attached to each state. %------------------------------------- % 2
www.eeworm.com/read/274320/10876418

m mai_fec.m

%---------------------------------------------------------------------- % Degradation due to multiple access interference with and without % FEC coding. %-------------------------------------------
www.eeworm.com/read/419165/10882384

m mysvdtest00.m

%%%%%此文件用于进行相空间重构,并绘制相空间特征值及特征值斜率的变化趋势 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clear all; clc; %load myshuju02 %B=yy(2,:); %load data1; %B=a1(1:4238); %load mydata4xx
www.eeworm.com/read/419059/10887970

m trucktrailer.m

%function [ErrEstimate, ErrMeasurement] = TruckTrailer(sigmaX, sigmaY, fOptimal, fPlot) % function [ErrEstimate, ErrMeasurement] = TruckTrailer(sigmaX, sigmaY, fOptimal, fPlot) % % Simulate the t
www.eeworm.com/read/419059/10887985

m member.m

function Member % function Member % % Plot the membership functions for the truck trailer system. z=-4:.01:4; a1=(1-1./(1+exp(-3*(z-pi/2)))).*(1./(1+exp(-3*(z+pi/2)))); a2=1-a1; plot(z,a1,'
www.eeworm.com/read/419059/10887989

asv trucktrailer.asv

%function [ErrEstimate, ErrMeasurement] = TruckTrailer(sigmaX, sigmaY, fOptimal, fPlot) % function [ErrEstimate, ErrMeasurement] = TruckTrailer(sigmaX, sigmaY, fOptimal, fPlot) % % Simulate the t
www.eeworm.com/read/418955/10890521

m electric1.m

N=10000; s=zeros(1,N); for n=1:N if n0.8*N s(n)=31.1*sin(2*pi*50/10000*n); else s(n)=22.5*sin(2*pi*50/10000*n); end end
www.eeworm.com/read/273787/10901137

m dfreqp.m

%DFREQP function dfreqp(h) f = linspace(0,pi,1024); for I = 1:1024 y(I) = dbvalue(abs(dfreq(h,f(I)))); end plot(f,y,'w');
www.eeworm.com/read/273787/10901192

m zplot.m

% plot the input data with respect to data index function zplot(zin,ndz) subplot(4,1,1);plot(zin(1:ndz),'o'); title(' The input signal'); hold on