代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/206562/7129737
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/362924/7139040
m chap5_1.m
%Fuzzy approaching
clear all;
close all;
L1=-3;L2=3;
L=L2-L1;
h=0.2;
N=L/h+1;
T=0.01;
x=L1:T:L2;
for i=1:N
e(i)=L1+L/(N-1)*(i-1);
end
c=0;d=0;
for j=1:N
if j==1
u=trimf
www.eeworm.com/read/362924/7139045
m chap3_3.m
%Define N+1 triangle membership function
clear all;
close all;
N=6;
x=-3:0.01:3;
for i=1:N+1
f(i)=-3+6/N*(i-1);
end
u=trimf(x,[f(1),f(1),f(2)]);
figure(1);
plot(x,u);
for j=2:N
www.eeworm.com/read/362924/7139054
m chap4_4.m
%Define N+1 triangle membership function
clear all;
close all;
N=2;
x=0:0.1:100;
for i=1:N+1
f(i)=100/N*(i-1);
end
u=trimf(x,[f(1),f(1),f(2)]);
figure(1);
plot(x,u);
for j=2:N
www.eeworm.com/read/152244/7139235
m foh.m
function foh(y,alpha,Ts)
% plot the output of fractional-order hold
%
% input: y - discrete signal vector as input signal to a fractional
% order hold
% alpha - 0
www.eeworm.com/read/152244/7139341
m ex2_10.m
%%%%%%%%%%%%%%%%% Example 2.10 %%%%%%%%%%%%%%%%%%
% Discrete-Time Control Problems using %
% MATLAB and the Control System Toolbox %
% by J.H. Chow, D.K. Frederick, & N.W. Chbat %
www.eeworm.com/read/152244/7139352
m reinf2_13.m
%%%%%%%%%%% Reinforcement Problem 2.13 %%%%%%%%%%
% Discrete-Time Control Problems using %
% MATLAB and the Control System Toolbox %
% by J.H. Chow, D.K. Frederick, & N.W. Chbat %
www.eeworm.com/read/152244/7139360
m ex5_2.m
%%%%%%%%%%%%%%%%%% Example 5.2 %%%%%%%%%%%%%%%%%%
% Discrete-Time Control Problems using %
% MATLAB and the Control System Toolbox %
% by J.H. Chow, D.K. Frederick, & N.W. Chbat %
www.eeworm.com/read/152244/7139378
m ex5_1.m
%%%%%%%%%%%%%%%%%% Example 5.1 %%%%%%%%%%%%%%%%%%
% Discrete-Time Control Problems using %
% MATLAB and the Control System Toolbox %
% by J.H. Chow, D.K. Frederick, & N.W. Chbat %
www.eeworm.com/read/299984/7140358
m plotr.m
%PLOTR Plot regression
%
% PLOTR(W)
% PLOTR(W,CLR)
%
% Plot the regression function W, optionally using plot string CLR.
% This plot string can be anything that is defined in plot.m.
% For the b