代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/310539/13649565
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/310418/13651314
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/310418/13651329
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/310251/13654391
m pa_t.m
clear all;
%pa-t提取
x=load('time_36.lvm');
L=length(x);
t=x(1:L,1);
y=x(1:L,2);
%曲线拟合
y1=abs(y);
p=polyfit(t,y1,20);
y2=polyval(p,t);
y3=-y2;
%绘图
plot(t,y,'b');grid on
hold on;plot(t,y
www.eeworm.com/read/310212/13654612
m phone.m
function phone(action)
%PHONE Signal processing and the touch-tone phone.
% Ned Gulley, 6-21-93
% Copyright (c) 1988-98 by The MathWorks, Inc.
% $Revision: 5.6 $ $Date: 1997/11/26 20:13:
www.eeworm.com/read/310212/13654655
m filtdem.m
function slide=filtdem
% FILTDEM Filter design and filtering demo.
% This demonstration designs a filter with the Signal Processing Toolbox
% and applies it to a signal made up of harmonic com
www.eeworm.com/read/309547/13669014
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/309547/13669029
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/309376/13673177
txt 灰度直方图.txt
clc
clear
fn='rice.tif';
I=imread (fn);
J=I;
%计算灰度图象的直方图数据
L=256; %灰度级
Ps = zeros(L,1); %统计直方图结果数据
nk=zeros(L,1);
[row,col]=size(I);
n=row*col; %总像素个数
for i = 1:row
for j = 1:col
num = d
www.eeworm.com/read/309376/13673178
m 灰度直方图.m
clc
clear
I=imread ('Cameraman.bmp');
J=I;
%计算灰度图象的直方图数据
L=256; %灰度级
Ps = zeros(L,1); %统计直方图结果数据
nk=zeros(L,1);
[row,col]=size(I);
n=row*col; %总像素个数
for i = 1:row
for j = 1:col
num = doub