代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/161098/10451853
m ex0408.m
%用不同线段类型、颜色和数据点形画曲线
x=0:0.1:2*pi;
plot(x,sin(x),'r-.') %用红色点划线画出曲线
hold on
plot(x,cos(x),'b:o') %用蓝色圆圈画出曲线,用点线连接
www.eeworm.com/read/161095/10452165
m spypart.m
function spypart(S, rp, cp);
%SPYPART Spy plot with partitioning.
% SPYPART(S,rp,cp) plots the sparsity pattern of a matrix S,
% with lines marking a block partition described by
% rp (rows) an
www.eeworm.com/read/424365/10457763
m bayes.m
%--------------------------------
% Bayes分类
%--------------------------------
%x1,x2,x3分别为训练集资料矩阵
x1=[0 0;2 1;1 0];
x2=[-1 1;-2 0;-2 -1];
x3=[0 -2;0 -1;1 -2];
%求取各类的均值,协方差矩阵和逆矩阵
c1=cov(x1);c2=
www.eeworm.com/read/160929/10469504
m p3_1.m
% Program P3_1
% Evaluation of the DTFT
clf;
% Compute the frequency samples of the DTFT
w = -4*pi:8*pi/511:4*pi;
num = [2 1];den = [1 -0.6];
h = freqz(num, den, w);
% Plot the DTFT
subplot(2,1,1)
pl
www.eeworm.com/read/160929/10469870
m p3_1.m
% Program P3_1
% Evaluation of the DTFT
clf;
% Compute the frequency samples of the DTFT
w = -4*pi:8*pi/511:4*pi;
num = [2 1];den = [1 -0.6];
h = freqz(num, den, w);
% Plot the DTFT
subplot(2
www.eeworm.com/read/160929/10470268
m p3_1.m
% Program P3_1
% Evaluation of the DTFT
clf;
% Compute the frequency samples of the DTFT
w = -4*pi:8*pi/511:4*pi;
num = [2 1];den = [1 -0.6];
h = freqz(num, den, w);
% Plot the DTFT
subplot(2,1,1)
pl
www.eeworm.com/read/424102/10492209
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/424102/10492292
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
www.eeworm.com/read/424063/10499260
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/424063/10499264
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;