代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/272953/10935543
m exn532t.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第五章例5-3-2
% 用平行截面分析空间曲面
% 西安电子科技大学出版社出版 陈怀琛编著 2007年5月
%
clear, n1=input('n1= '); syms k,
for n=1:n1 s1(n)=symsum(1/k^2,1,n);end,
plot(1:n,double(s1)),hold on
for
www.eeworm.com/read/272953/10935545
m exn532a.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第五章例5-3-2a
% 用符号数学求数列前有限项的和
% 西安电子科技大学出版社出版 陈怀琛编著 2007年7月
%
clear, close all
n1=input('n1= '); syms k,
for n=1:n1 s1(n)=symsum(1/k^2,1,n);end,
plot(1:n,double(s1
www.eeworm.com/read/272953/10935571
m exn911.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第九章例9-1-1程序
% 连续信号的MATLAB表述
% 西安电子科技大学出版社出版 陈怀琛编著 2007年7月
%
clear, t0=0;tf=5;dt=0.05;t1=1; t=[t0:dt:tf];
% (1)单位脉冲信号,
% 在t1(t0≤t1≤tf)处有一持续时间为dt,面积为1的脉冲信号,其余时间均为零。
www.eeworm.com/read/272953/10935774
m exn842.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第八章例8-4-2程序
% Smith阻抗圆图的绘制(解实数方程方法)
% 西安电子科技大学出版社出版 陈怀琛编著 2007年6月
%
plot([0 0],[-1.1 +1.1],'r'), hold on,xlabel('u') % 画坐标轴系
plot([-1.1 +1.1],[0 0],'r'),ylabel('v')
www.eeworm.com/read/272735/10946242
txt 用matlab编的神经网络程序.txt
用matlab编的神经网络程序
一、
% bp.m - Implementation of backpropagation algorithm
% (C) copyright 2001 by Yu Hen Hu
% created: 3/17/2001
% call bpconfig.m, cvgtest.m, bpdisplay.m, bptest.m
% rsample.m, ra
www.eeworm.com/read/418342/10952644
m vistformfwd.m
function vistformfwd(tform, wdata, zdata, N)
%VISTFORMFWD Visualize forward geometric transform.
% VISTFORMFWD(TFORM, WRANGE, ZRANGE, N) shows two plots: an N-by-N
% grid in the W-Z coordinate
www.eeworm.com/read/418151/10964331
m plotusage.m
function plotUsave(sv)
% Plot the elemet usage for a multi-elemet DAC
T = size(sv,2); M = size(sv,1);
% Plot the grid
x=[0:T; 0:T]; x=x(:)';
T2 = ceil((T+1)/2);
y=[zeros(1,T2); M*ones(2,T2);
www.eeworm.com/read/417999/10968878
m ch4_8.m
y = sin([1:50]/3)';
thm = segment([y,ones(length(y),1)],[0 1 1],0.1);
plot([thm,y])
www.eeworm.com/read/272138/10969012
m fivepoints.m
%五点滑动平均法平滑处理
clear
close all hidden
%提示用键盘输入输入数据文件名
fni=input('五点滑动平均法平滑处理-输入数据文件名:','s');
fid=fopen(fni,'r'); %以只读方式打开数据文件
sf=fscanf(fid,'%f',1); %读入采样频率值
m=fscanf(fid,'%d',1);
www.eeworm.com/read/417736/10978205
m 例5-4.m
>> t=0:0.2:2*pi;
>> plot(t,sin(t),'>',t,cos(t),'+');
>> xlabel('x'),ylabel('y');
>> title('sin(x) and cos(x)');
>> legend('sin wave','cos wave')