代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/347809/11635260
m limwiener.m
%wiener滤波器,选用电力系统谐波信号作为输入信号。参考书目:现代信号处理(第二版),张贤达,清华大学出版社。175-176页
clc;clear all;close all;
f1=50;ts=1/1000;n=1:256;N=256;M=20;
x=2*sin(2*pi*f1*n*ts)+1.4*sin(2*pi*f1*7*n*ts);
x1=1.4*sin(2*pi*f1*7*n
www.eeworm.com/read/347809/11635272
m limkalman.m
%kalman滤波器。参考书目:近代信号处理理论与方法,张明友等著,国防工业出版社。67页
clc;clear all;close all;
s(1)=0;N=1000;a=1;
w=randn(1,N);
for k=2:N
s(k)=a*s(k-1)+w(k-1);
end
figure
plot(s)
c=0.2;n=randn(1,N);
for k=1:N
www.eeworm.com/read/158099/11643655
m blind3sub.m
% subspace method for blind channel estimation
%
% Copyright: Xiaohua(Edward) Li, Assistant Professor
% Department of Electrical and Computer Engineering
% State University of Ne
www.eeworm.com/read/347690/11649246
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
www.eeworm.com/read/261326/11654325
m exp2_4_.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
hold on %允许在同一坐标系下绘制不同的图形
plot(t,sin(t),'r:*')
plot(t,cos(t))
plot(t,-cos(t),'k')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
hold off %覆盖旧图
www.eeworm.com/read/261326/11654355
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/261198/11659580
m plotcov2.m
% PLOTCOV2 - Plots a covariance ellipse with major and minor axes
% for a bivariate Gaussian distribution.
%
% Usage:
% h = plotcov2(mu, Sigma[, OPTIONS]);
%
% Inputs:
% mu -
www.eeworm.com/read/157737/11667233
m wave1.m
t=0:pi/20:4*pi;
x=0:0.1*pi:4*pi;
m=moviein(40)
for i=1:40
y=sin(x-t(i));
plot(x,y);
axis([0,12,-1,1]);
m(:,i)=getframe;
end
movie(m,3,30)
www.eeworm.com/read/347338/11671496
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/347338/11671537
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