代码搜索:plot

找到约 10,000 项符合「plot」的源代码

代码结果 10,000
www.eeworm.com/read/491641/6432222

m uniform3b.m

%============均匀三次B样条曲线插值=========== %定义变量: %X:原始资料,d:控制顶点 %n:数据条数,k:B样条的次数 %/*======Copyright@时光牧者( http://hi.baidu.com/junus ).==========*/ %/*======Email: firt123@163.com ==================
www.eeworm.com/read/491641/6432227

m nonuniform3b.m

%X:原始资料,d:控制顶点 %n:数据条数,k:B样条的次数 %/*======Copyright@时光牧者( http://hi.baidu.com/junus ).==========*/ %/*======Email: firt123@163.com ==============================*/ clc,clear; figure; X=load
www.eeworm.com/read/491236/6437802

m lab3_1(a).m

% c=20; % seq=[-5,5,-5,-5,5,-5,5,-5,5,-5,5,5]; % for j=1:10; % L=seq(j); % for i=1:c % x((j-1)*20+i)=L % end; % end; % subplot(211); % % %subplot(2,1,1); % % %noise g
www.eeworm.com/read/491236/6437884

m fig9_20.m

clear all eps = 0.0000001; npts = 5000; del = 1./ 5000.; t = 0. : del : 1.; % generate input sequence inp = 1.+ t.^3 + .5 .*t.^2 + cos(2.*pi*5 .* t) ; % read the intial estimate for the state v
www.eeworm.com/read/491236/6437899

m fig9_21.m

clear all eps = 0.0000001; npts = 5000; del = 1./ 5000.; t = 0. : del : 1.; % generate input sequence inp = 1.+ t.^3 + .5 .*t.^2 + cos(2.*pi*5 .* t) ; % read the intial estimate for the state v
www.eeworm.com/read/491236/6437925

m fig9_28.m

clear all npts = 2000; del = 1/2000; t = 0:del:1; inp = (1+.2 .* t + .1 .*t.^2) + cos(2. * pi * 2.5 .* t); X0 = [1,.1,.01]'; % it is assumed that the measurement vector H=[1,0,0] % this is the
www.eeworm.com/read/491236/6437946

m ex3_1.m

%SIMULATION OF AWGN CHANNEL %generating a rect. amplitude +/-5 pulse sequence e=20; %sample time seq=[-5 5 -5 -5 5 -5 5 -5 5 5]; %pulse sequence for j=1:10, L=seq(j); for i=1:e,
www.eeworm.com/read/491236/6437967

m fig9_27.m

clear all npts = 2000; del = 1/2000; t = 0:del:1; inp = (1+.2 .* t + .1 .*t.^2);% + cos(2. * pi * 2.5 .* t); X0 = [1,.1,.01]'; % it is assumed that the measurmeny vector H=[1,0,0] % this is the
www.eeworm.com/read/491122/6440902

m chap3_10.m

%PD Type Fuzzy Controller Design clear all; close all; ts=0.001; sys=tf(133,[1,25,0]); dsys=c2d(sys,ts,'z'); [num,den]=tfdata(dsys,'v'); e_1=0; u_1=0;u_2=0; y_1=0;y_2=0; for k=1:1:10
www.eeworm.com/read/491165/6441173

m linregr.m

function [a, r2] = linregr(x,y) x=[88.9 108.5 014.1 139.7 127 94 116.8 99.1]; y=[14.6 16.7 15.3 23.2 19.5 16.1 18.1 16.6]; n = length(x); if length(y)~=n, error('x and y must be same length'); en