代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/388606/7107276
asv lp.asv
function lp(C,p1)
varepsilon=0.1;
l=50;
x=linspace(-10,10,l);
xi=randn(1,l);
xi3=0.1.*xi;
y3=sin(x+exp(-20.))./(x+exp(-20.))+xi3;
p1=2;
C=1000;
Q=rbfker(x',p1,0);
%线性规划开始
% yueshu
www.eeworm.com/read/388606/7107280
m lp.m
function lp(C,p1)
varepsilon=0.1;
l=50;
x=linspace(-10,10,l);
xi=randn(1,l);
xi3=0.1.*xi;
y3=sin(x+exp(-20.))./(x+exp(-20.))+xi3;
%我的程序,修改变量x,y的输入
%I=size(x,1);
%修改结束
p1=2;
www.eeworm.com/read/128833/7109336
m kalman0127.m
clc;
clear all;
close all;
T=2;
A=[1 T 0 0;0 1 0 0;0 0 1 T;0 0 0 1];
G=[T 0;1 0;0 T;0 1];
H=[1 0 0 0;0 0 1 0];
vx=-15;
vy=-15;
t=400;
alldot=t/T;
i=1:t/T;
rx=2000+vx*i*T;
ry=10000+vy*i*T;
www.eeworm.com/read/304790/7114582
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/304790/7114598
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/383268/7119713
m holder.m
function h=holder(tfr,f,n1,n2,t,pl)
%HOLDER Estimate the Holder exponent through an affine TFR.
% H=HOLDER(TFR,F,N1,N2,T) estimates the Holder exponent of a
% function through an affine time-frequenc
www.eeworm.com/read/274556/7127052
m e0602.m
x=1:pi/100:4;
y=2*exp(-0.5*x).*log(2*pi*x);%y的结果为数组乘运算
plot(x,y)
www.eeworm.com/read/274556/7127061
m e0622.m
x = [ 1 2 3 4 5 6];y = [ 2 6 8 7 8 5];stairs(x,y);
title('Example of a Stair Plot');xlabel('x');ylabel('y');axis([0 7 0 10]);
www.eeworm.com/read/274556/7127067
m e0612.m
x = 0:0.1:10;y = x.^2 - 10.*x + 26;
figure(1)
subplot(2,2,1) ; plot(x,y); %绘制直角坐标系图形
title ('Linear Plot');xlabel ('x');ylabel ('y');grid on;
subplot(2,2,2); semilogx(x,y); %绘制x轴用以10为底的对数刻度标定的半对数
www.eeworm.com/read/274556/7127107
m e0604.m
figure
x=0:pi/100:2*pi; y=2*sin(2*x)+3*sin(3*x)*i;
subplot(1,2,1),plot(x,y)%绘制复数矩阵的实部部分
title('This is figure of the real part .'); %给图形加上标题
xlabel('x'); %给x轴加标注
ylabel('real(y)'); %给y轴加标注
subpl