代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/468795/6988681
m mtd.m
clc
clear all
close all
fr=10e3;
tr=1/fr;
fs=8e6;
ts=1/fs;
fd=2.5e3;
lemna=0.01;
sita=0.027;%固定杂波速度方差
sita1=0.06;%动杂波速度方差
sita2=0.06;%动杂波速度方差
choose=3;
f1=1:50;
f2=-49:50;
f3=-24.5:25;
www.eeworm.com/read/468795/6988689
asv mtd.asv
clc
clear all
close all
fr=10e3;
tr=1/fr;
fs=8e6;
ts=1/fs;
fd=2.5e3;
lemna=0.01;
sita=0.027;%固定杂波速度方差
sita1=0.06;%动杂波速度方差
sita2=0.06;%动杂波速度方差
choose=3;
f1=1:50;
f2=-49:50;
f3=-24.5:25;
www.eeworm.com/read/140612/6988718
m mallat.m
%%%%%%%mallat algorithm%%%%%
clc;
clear;tic;
%%%%original signal%%%%
f=100;%%frequence
ts=1/800;%%抽样间隔
N=1:100;%%点数
s=sin(2*ts*pi*f.*N);%%源信号
figure(1)
plot(s);%%%源信号s
title('原信号');
grid
www.eeworm.com/read/468423/6989828
m logistic.m
clear
clc
% 读入人口数据(1977-2006年)
fid=fopen('shuju2.txt','r');
a=fscanf(fid,'%f',[30,2]);
y=a(:,1);
% 读入时间变量数据(t=年份-1976)
t=a(:,2);
hold on;
plot(t,y,'r');
text(15,70000,'全国就业人口示意图');
% 线性化处理
www.eeworm.com/read/467934/6997017
m p2.m
clc
clear all
M = 2; % Size of signal constellation
k = log2(M); % Number of bits per symbol
n = 3e4; % Number of bits to process
nsamp = 1; % Oversampling rate
x = randint(n,1);
% Plot first 4
www.eeworm.com/read/265028/6997218
asv plotsv.asv
function plotsv(net, X, Y)
%绘制支持向量
hold on;
ind = find(Y(net.svind)>0);
plot(X(net.svind(ind),1),X(net.svind(ind),2),'rs'); %用红色方框标记正向量
ind = find(Y(net.svind)
www.eeworm.com/read/467324/7009744
m am_dem.m
% am-dem.m
% Matlab demonstration script for envelope detection. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15;
www.eeworm.com/read/467324/7009745
m lssb.m
% lssb.m
% Matlab demonstration script for LSSB-AM modulation. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15;
www.eeworm.com/read/467324/7009746
m dsb1.m
% dsb1.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15;
www.eeworm.com/read/467324/7009754
m dsb2.m
% dsb2.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is m(t)=sinc(100t).
echo on
t0=.2; % signal duration
ts=0.001; % sampling interval
fc=250; % ca