代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/459909/7263184
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/459244/7278180
m chap5_3.m
%Equivalent Discrete Sliding Mode Control based on RBF neural control
clear all;
close all;
ts=0.001;
a=25;
b=133;
A=[0,1;0,-a];
B=[0;b];
C=[1,0];
D=0;
[A1,B1,C1,D1]=c2dm(A,B,C,D,ts,'z');
www.eeworm.com/read/459103/7282681
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/458751/7289828
m pulse.m
function [y,m] =pulse (x, m, Kmod);
%
% Usage:y=pulse (x, m, Kmod); BBI 2000
if nargin
www.eeworm.com/read/458751/7289829
asv qam.asv
function [y,fs,fb,fc]=qam(x,Kbase,fs,fb,fc);
%
% Usage:[y, fs, fb, fc]=qam(x,kbase,fs,fb,fc);BBI2000
if nargin
www.eeworm.com/read/458751/7289840
asv pulse.asv
function [y,m] =pulse (x, m, Kmod);
%
% Usage:y=pulse (x, m, Kmod); BBI 2000
if nargin
www.eeworm.com/read/458661/7291876
m smithcir.m
% smithcir.m - add stability and constant gain circles on Smith chart
%
% Usage: smithcir(c,r,maxG,width)
% smithcir(c,r,maxG) (equivalent to width=1)
% smithcir(c,r)
www.eeworm.com/read/458493/7295511
m easyplot.m
% easyplot: Script to plot data in file xy.dat
% Load the data
D = load('xy.dat'); % D is matrix with two columns
x = D(:,1); y = D(:,2); % x in 1st column, y in 2nd column
plot(x,