代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/199440/7853178
m demlike.m
% A demonstration of the HMM software using the 'Likelihood' observation
% model. There are K=2 time series where EACH TIME SERIES IS THE
% LIKELIHOOD OF THE DATA GIVEN THAT STATE - in effect there i
www.eeworm.com/read/299414/7860907
m longgefenduan.m
syms f x p lx;
f=1/(1+25*x^2);
N=input('请输入插值节点数N=');
xx=-1:2/N:1;
p=1; L=0;
ff=zeros(1,length(xx));
for i=1:(N+1)
x=xx(i);
ff(i)=eval(f);
end
syms x
for i=1:N
for j=1:(N+1)
www.eeworm.com/read/434450/7865906
awk graph.awk
# graph - processor for a graph-drawing language
# input: data and specification of a graph
# output: data plotted in specified area
# AKW p137
BEGIN { # set frame dimensi
www.eeworm.com/read/399311/7870882
m f1.m
function shili14
h0=figure('toolbar','none',...
'position',[200 150 450 250],...
'name','实例14');
axis([0 10 0 10]);
hold on
x=[];
y=[];
n=0;
disp('单击鼠标左键点取需要的点');
disp('单击鼠标右键点取最后一个点
www.eeworm.com/read/434346/7871262
m rls01.m
% RLS 算法
clear
close all
M=100;
N=1024;
w1=zeros(M,N);
w2=zeros(M,N);
ee=zeros(M,N);
Lamda1 = 0.95 ;
w10=zeros(M,N);
w20=zeros(M,N);
ee0=zeros(M,N);
Lamda2 = 0.6 ;
Del
www.eeworm.com/read/434343/7871668
m lsl01.m
clear
close all
clear;
close all
N=1024;
M=100;
K=3;
a1=1.558;
a2=-0.81;
kf=zeros(K,N);
kb=zeros(K,N);
w1=zeros(M,N);
w2=zeros(M,N);
ef=zeros(K,N);
eb=zeros(K,N);
delta=zeros(K,N);
www.eeworm.com/read/434329/7873340
m lms gal.m
clear;
close all
N=1024;
M=3;
a1=1.558;
a2=-0.81;
k=zeros(M,N+1);
w1=zeros(1,N+1);
w2=zeros(1,N+1);
ef=zeros(M,N);
eb=zeros(M,N);
u=0.002;
x= randn(1,N);
xu(1)=x(1);
xu(2)=a1*xu(1)+x(2
www.eeworm.com/read/434208/7881836
html categorypointerannotationdemo1.html
CategoryPointerAnnotationDemo1
This demo shows a CategoryPointerAnnotation added to a simple line
plot.
www.eeworm.com/read/434208/7882027
html gridbanddemo1.html
GridBandDemo1
A simple scatter plot showing the grid band feature of the XYPlot
class.
www.eeworm.com/read/434208/7882423
html function2ddemo1.html
Function2DDemo1
This demo illustrates how to plot a mathematical function y = f(x) with
JFreeChart. The function is sampled to create a dataset which is then
plotted. This isn't idea