代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/338062/6311195

m shili36.m

h0=figure('toolbar','none',... 'position',[200 150 450 250],... 'name','实例36'); x=0:0.5:2*pi; y=sin(x); h=plot(x,y); grid on hm=uicontrol(gcf,'style','popupmenu',... 'string',...
www.eeworm.com/read/213911/6312108

m concen.m

function [r1, r2] = concen(toxtest); % Create two vectors. r1 contains the ratio of mercury to lead % at each observation. r2 contains the ratio of lead to chromium. r1 = [toxtest.mercury] ./ [toxt
www.eeworm.com/read/270136/6330759

m pulse1.m

m=1000; t=0:0.5e-11:50e-9 Pin1=5e-3; %mw Pin2=0; %mw for k=1:1:m Pin1=Pin1+10e-3*sin(pi/2*k)/k/pi*exp(i*k*pi*1e9/5*t); Pin2=Pin2+10e-3*sin(pi/2*k)/k/pi*exp(-i*k*pi*1e9/5*t); en
www.eeworm.com/read/226771/6341349

m dijkstra.m

function [p,v]=dijkstra(map,u1,u2) %求网络最短路径的dijkstra算法 %用法: % 首先输入矩阵: % map=[起点1 终点1 边长1;起点2 终点2 边长2;............;起点n 终点n 边长n] % 和u1,u2 % 注意:这里map为无向图。 % 再用[p,v]=dijkstra(map,u1,u2)求最短路径
www.eeworm.com/read/484627/6348578

m mn_12.m

clear all; close all; M=[12 1 6 2 4 3]; N=[1 12 2 6 3 4]; SNR_1=linspace(0,30,31); SNR = 10.^(SNR_1/10); C= zeros(6,31); for i=1:6 if N(i)>M(i) C(i,:) = M(i)*log2(1+(N(i)*SNR)/M(i)
www.eeworm.com/read/484627/6348579

m mn_4.m

clear all; close all; M=[1 2 1 2 4 1]; N=[1 1 2 2 1 4]; SNR_1=linspace(0,30,31); SNR = 10.^(SNR_1/10); C= zeros(6,31); for i=1:6 if N(i)>M(i) C(i,:) = M(i)*log2(1+(N(i)*SNR)/M(i));
www.eeworm.com/read/227966/6350238

m eventplot.m

function h = eventplot(X) % h = eventplot(X) % Method for seismicdecon example supplied with SA Tools. % See http://www.frostconcepts.com/software for information on SA Tools. % % h = eventplot
www.eeworm.com/read/257423/6356478

m c1ex15.m

% Example 1-15 % t = -10:.005:10; x = stp_fn(t - 2); % Generate step starting at t = 2 y = impls_fn(t + 3, 0.05); % Generate unit impulse at t = -3 z = 2*rmp_fn(4 - t); % Generate backwards
www.eeworm.com/read/303039/6356532

m call_dlp2bs.m

%call_dlp2bs.m 数字低通滤波器到数字带阻滤波器 function []=call_dlp2bs(h1,h2) axes(h1);hold off plot([0,0],[-1.2,1.2],'linestyle','-.','color','g');hold on plot([-2,2],[0,0],'linestyle','-.','color','g');axis([-1
www.eeworm.com/read/303039/6356536

m call_dlp2bp.m

%call_dlp2bp.m 数字低通滤波器到数字带通滤波器 function []=call_dlp2bp(h1,h2) axes(h1);hold off; plot([0,0],[-1.2,1.2],'linestyle','-.','color','g');hold on plot([-1.2,1.2],[0,0],'linestyle','-.','color','g');axi