代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/145329/12735722
m vtb7.m
% VTB7
%
% VTB7_1 is an example of taking a power spectral density
% of data. The power spectral density of a signal
% containing .5 Hz and 1.59 Hz signals is plotted.
% VTB7_2 g
www.eeworm.com/read/145329/12735759
m vtb8_1.m
function VTB8_1
% VTB8_1 [node,ncon,zero,force]=VTB8_1
% Makes input file for VTB8_2
% I suggest you print the file vtb8read.txt
% Joseph C. Slater, 6-17-90
% Copyright (c) 1990-94 by Joseph C. Slat
www.eeworm.com/read/145329/12735858
m vtb4_2.m
function [x,v,t]=vtb4_2(M,K,x0,v0,tf,plotpar)
%VTB4_2 Free response of an undamped system.
% [x,v,t]=VTB4_2(M,K,x0,v0,tf) will return the displacement (x) and
% velocity (v) response for the system de
www.eeworm.com/read/332675/12744981
m p3.m
sf=filter(b,a,s);
plot(t,sf);
xlabel('Time(seconds)');
ylabel('Time waveform');
axis([0 1 -1 1]);
www.eeworm.com/read/246250/12746143
txt 2fskm.txt
l=linspace(0,pi,50);% 数据初始化
t=linspace(0,9*pi,450);
b=1:1:9;
out=1:1:450;
f=1:1:450;
g=1:1:450;
w1=2 %正弦波f1的频率,可以根据自己想要的频率在此改写
w2=1 %正弦波f2的频率,可以根据自己想要的频率在此改写
f1=sin(w1*l);
fi
www.eeworm.com/read/145119/12753176
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/145119/12753224
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/246155/12753462
m plotshapes.m
%%%%%%%%%%%%%%%%%%%%%%%%%%
%(c) Ghassan Hamarneh 1999
%%%%%%%%%%%%%%%%%%%%%%%%%%
function PlotShapes(Xu,str,ContoursEndingPoints);
%function PlotShapes(Xu,str,ContoursEndingPoints);
%ColorsAr
www.eeworm.com/read/144891/12764246
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/332284/12764918
m fisher.m
% ===============================Fisher===============================
% X: 训练样本
% x: 待判样本
% N: 每类样本数
% W: 权向量
% 对应课本Page88
% =================================================================