代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/453400/7421758
sas nonlin3.sas
options nodate nonumber;
data nonlin3;
input x y @@;
cards;
7.5 121.2 8.5 125.7 9.5 130.7 10.5 135.3 11.5 139.9 12.5 145.2
13.5 151.8 14.5 158.3 15.5 163.8 16.5 167.0 17.5 168.6
;
proc nli
www.eeworm.com/read/452654/7436603
m probedata.m
function probeData(varargin)
%Function plots raw data information: time domain plot, a frequency domain
%plot and a histogram.
%
%The function can be called in two ways:
% probeData(settings)
www.eeworm.com/read/452398/7441313
m bpsk_ask.m
%Run from editor Debug(F)
%This m file(ASK.m) analyzes a coherent amplitute shift keyed(ASK) and a binary
%phase shift keyed(BPSK) communication system. The receiver uses a correlator
%(mixer-integrat
www.eeworm.com/read/451691/7458151
m untitledshuzhibuwending.m
fprintf('数值不稳定算法:\n')
y1=1-5*log(1.2); %取初值y1;
n=1;
plot(n,y1,'r*')
hold on
fprintf('y[%2.0f]=%12.6f',n,y1);
for n=2:20
y2=1/n-5*y1;
fprintf('y[%2.0f]=%12.6f',n,y2)
y1=y2;
www.eeworm.com/read/451547/7461937
m dd_ex3.m
% DD_EX3
%
% Show the use of the ksvdd: the support vector data description using
% several different kernels.
%
% To be honest, the SVDD is the most useful using the RBF kernel. In
% most case
www.eeworm.com/read/451450/7463551
m bartlett_zfj.m
%产生信号序列
n=linspace(-pi,pi,1024);
xn=2*sin(n*40)+cos(n*100);
figure,plot(xn);
title('Input Signal');
%计算序列的DFT及PSD
M=64;
L=length(n)/M;
Pbw=zeros(1,M);
for i=1:L
for j=1:M
x(j)=x
www.eeworm.com/read/451450/7463553
m welch_zfj.m
%*************************************%
% Welch Method %
%*************************************%
%产生信号序列
n=linspace(-pi,pi,1024);
xn=2*sin(n*40)+cos(n*100);
figure,plot(x
www.eeworm.com/read/451402/7464420
m tongyuan.m
clear all
x=[1 0 0 1 0 1 1 0 1 1]
grid=200;
t=0:1/grid:length(x);
for i=1:length(x)
if(x(i)==1)
for j=1:grid
www.eeworm.com/read/451385/7466275
m touchtone.m
function touchtone(arg)
% TOUCHTONE Use FFT to synthesize and analyze telephone dialing
%
% The dual tone multi-frequency (DTMF) standard specifies that the tone
% generated by a button on a tele
www.eeworm.com/read/451345/7466901
m output.m
%%利用模型生成X(k),y(k)
R1=1;
R2=1;
e=randn(1,3000);
e=e/std(e);
e=e-mean(e);
a=0;
b=sqrt(R1);
e=a+b*e;
z=randn(1,3000);
z=z/std(z);
z=z-mean(z);
c=0;
d=sqrt(R2);
z=c+d*z;
x=cell(1,30