代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/144399/12796998
m sourcesinkplot.m
% sourceSinkPlot Surface and contour plots of source/sink pair
ngrid = 40; % Number of grid lines
xg = linspace(-5,5,ngrid); % Vector of both x and y grid locations
www.eeworm.com/read/144399/12797009
m democontour.m
% demoContour Demonstration of a contour plot
xg = linspace(-5,5,20); % grid vector
[X,Y] = meshgrid(xg,xg); % Create matrices of X and Y values
Z = 2 - X.^2 - Y.^2; % Vectorized e
www.eeworm.com/read/144399/12797018
m tfield.m
function Tfield
% Tfield Load and plot temperature field stored in custom format text file
%
% Synopsis: Tfield
%
% Input: none
%
% Output: 2D color image with contour plot overlay
www.eeworm.com/read/245506/12797115
m m0804.m
load nearbrk; %载入一原始信号
s=nearbrk;
%画出该信号的波形图
subplot(4,2,1);
plot(s);
Ylabel('s');
title('原始信号s');
[c,l]=wavedec(s,4,'haar');%用harr小波进行3层分解
for i=1:4 %此处的循环可使编程简洁
dec
www.eeworm.com/read/144399/12797459
m demoode45.m
function demoODE45
% demoODE45 Integrate dy/dx = -y; y(0) = 1 with ode45
%
% Synopsis: demoODE45
%
% Input none
%
% Output: Table and plot comparing the numerical and exact solutions
www.eeworm.com/read/144351/12801174
m q729.m
%《MATLAB在电子信息课程中的应用》第七章例7.29程序q729
% 用脉冲响应不变法和双线性变换法将模拟滤波器离散化
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月
%脉冲响应不变法实现模拟到数字滤波器的转换
clear;close all
b=1000;a=[1,1000];
w=[0:1000*2*pi]; % 设定模拟频率
[hf,w]
www.eeworm.com/read/144351/12801191
m q621.m
%《MATLAB在电子信息课程中的应用》第六章例6.21程序q621
% 求状态转移矩阵及齐次状态方程解
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月
A=[-2,1;-17,-4]; % 输入状态方程系数矩阵
x0=[3;4]; % 输入初始条件
t=0:.02:3; Nt=length(t); % 设定自变量数组并确定其长度
F=zeros(
www.eeworm.com/read/144351/12801264
m q503.m
%《MATLAB在电子信息课程中的应用》第五章例5.3程序q503
% 直流电路的戴维南定理
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月
clear,format compact
R1=4;R2=2;R3=4;R4=8; % 设置元件参数
is1=2;is2=0.5;
% 按A*X=B*is列写此电路的矩阵方程,其中X=[u1;u2;ua];is=[
www.eeworm.com/read/245321/12804318
m hilbert_demo.m
% hilbert_demo.m -- Demonstration of Hilbert transform and an application
% to single sideband (SSB) amplitude modulation.
%
% ELEC 470, Rich Kozick, Spring 1998
Ts = 0.05; % Sam
www.eeworm.com/read/144069/12820616
m vedicentro.m
% image acquisition
a=imread('101_1.tif');
% rotate image
a=imrotate(a,-20);
% write to a BitMap image the rotated mage
img=double(a);
% if image sizes are not 8*K where K is an integer
% image