代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/458488/7296125
m demoode45.m
function demoODE45
% demoODE45 Integrate dy/dx = -y; y(0) = 1 with ode45
%
% Synopsis: demoODE45
%
% Input none
%
% Output: Table and plot comparing the numerical and exact solutions
www.eeworm.com/read/458396/7297098
m am.m
% am.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/458396/7297099
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
www.eeworm.com/read/458396/7297101
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/458396/7297102
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/458122/7304142
txt doa_classical.txt
%%%%%%%%-2008.5.19-%%%%%%%%%
%%%%%%%%---classical DOA based on subband ICA---%%%%%%%%%
clc;
clear;
N=20000;
S=wavread('D:\MATLAB\R2006a\work\old work\新实验2008\wdrums_liverec_5cm_mix.wav');
X1=S(:
www.eeworm.com/read/458107/7305053
m submain0.m
function submain0(handles)
global lamda L T D U3 N dover;
%lamda=0.001;
%L=1000; %腔长
%D=4; %腔镜直径
k=2*pi/lamda;
%N=150; %精度相关
%T=100; %
www.eeworm.com/read/457711/7318952
m ag801.m
%《线性代数实验践及MATLAB入门》第八章例题程序ag801
% 平面上向量的绘制
% 电子工业出版社出版 陈怀琛 龚杰民合著 2005年10月
%
u=[2;4]; v=[3;-1];
plot([2,3],[4,-1],'x');hold on
drawvec(u);hold on % drawvec是ATLAST中的子程序
drawvec(v,'g');hold off
www.eeworm.com/read/457711/7318957
m ag252a.m
%《线性代数实验践及MATLAB入门》第二章第五节演示程序二ag251
% 三维绘图和屏幕控制
% 电子工业出版社出版 陈怀琛 龚杰民合著 2005年10月
clear, close all
disp('绘制三维曲线'),echo on
pause, z=0:0.1:4*pi;x=cos(z);y=sin(z);plot3(x,y,z),grid on
pause,disp('绘
www.eeworm.com/read/457711/7318976
m plotline.m
function plotline(a,b,c,s)
% PLOTLINE(a,b,c,s) plots the line ax + by = c
% with axis set to [-s,s,-s,s].
% If the last input arguments is omitted, its
% default value is taken to be 5.
if nargi