代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/425546/10348704
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/425287/10365555
m f12_1.m
%读信号
load noisbump
x = noisbump;
%3层小波包分解
t = wpdec(x,3,'db2');
%显示小波包树结构
fig = plot(t);
www.eeworm.com/read/161831/10366927
m bss_ydm.m
clear all
clc
K=4;
N=100;
k=1:N;
s1=rand(1,N);
s2=square(2*pi*k/8);
plot(k,s2)
%generate a square wave with a period of 2*pi
s3=sin(2*pi*k/32);
s4=cos(2*pi*k/48);
X=zeros(K,N);
A=randn(K
www.eeworm.com/read/280010/10368579
m jianmo.m
close all
clear
echo on
clc
%BP建模
%定义网络输入p1
%p1=[];
%期望输出t1
%t1=[];
load D9515a.txt; qq1=D9515a; qq1=abs(qq1);
load D9515ab.txt; qq2=D9515ab; qq2=abs(qq2);
load D9515b.txt; qq3=D9515b;
www.eeworm.com/read/161705/10384998
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/161705/10385070
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/161667/10387306
m ch3_9_5.m
clear all;
figure(1)
k=0:127
x=cos(20*k)+sqrt(0.5)*randn(1,128);
subplot(311);
plot(k,x);
title('混噪信号时域图')
grid;
%小波变换
[ca1,cd1]=dwt(x,'db2');
subplot(323);
plot(cd1);
title('1 Detail.
www.eeworm.com/read/161667/10387309
m ch3_9_6.m
clear all;
load noisdopp;
x=noisdopp(1:128);
figure(1)
plot(x);
title('noisdopp噪声时域图')
%四级dwt分解
figure(2)
[ca1,cd1]=dwt(x,'db2');
subplot(421);
plot(ca1);
title('1 Approx.coef.for db2')
www.eeworm.com/read/161477/10404914
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/161477/10404963
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