代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/324902/13238520
m 6-18.m
L = linspace(0,2.*pi,6);
xv = cos(L)';yv = sin(L)';
xv = [xv ; xv(1)];
yv = [yv ; yv(1)];
%设定多边形
x = randn(250,1);
y = randn(250,1);
www.eeworm.com/read/324789/13245028
m ex5_8.m
t=0:0.01:2*pi;
x=exp(i*t);
y=[x;2*x;3*x]';
plot(y)
grid on; %加网格线
box on; %加坐标边框
axis equal %坐标轴采用等刻度
www.eeworm.com/read/138239/13247885
m dnrz.m
function y=dnrz(x)
grid=200;
t=0:grid:length(x)*grid;
for i=1:length(x),
if(x(i)==1),
for j=1:grid,
y((i-1)*grid+j)=1;
end
else
for j
www.eeworm.com/read/138239/13247891
m dnrz1.m
function y=dnrz(x)
grid=200;
t=0:1/grid:length(x);
for i=1:length(x),
if(x(i)==1),
for j=1:grid,
y((i-1)*grid+j)=1;
end
else
for j=1:
www.eeworm.com/read/324730/13248538
m 3-4-5-2.m
%绘制指数函数曲线
p=-1:0.05:1;
t=exp(-p);
plot(p,t);
grid;
title('exponential function');
xlabel('x');
ylabel('y');
figure;
%建立并训练网络
for i=1:5
net=newgrnn(p,t,i/10);
y(i,:)=sim(net,p);
en
www.eeworm.com/read/324671/13253082
m condense.m
% compute the background image
Im0 = double(imread('ball00000100.jpg','jpg'));
Im1 = double(imread('ball00000101.jpg','jpg'));
Im2 = double(imread('ball00000102.jpg','jpg'));
Im3 = double(imread('bal
www.eeworm.com/read/324301/13274172
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/324301/13274208
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/324300/13274382
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/324300/13274431
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