代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/257078/11951165
m e0612.m
x = 0:0.1:10;y = x.^2 - 10.*x + 26;
figure(1)
subplot(2,2,1) ; plot(x,y); %绘制直角坐标系图形
title ('Linear Plot');xlabel ('x');ylabel ('y');grid on;
subplot(2,2,2); semilogx(x,y); %绘制x轴用以10为底的对数刻度标定的半对数
www.eeworm.com/read/257078/11951279
m e0604.m
figure
x=0:pi/100:2*pi; y=2*sin(2*x)+3*sin(3*x)*i;
subplot(1,2,1),plot(x,y)%绘制复数矩阵的实部部分
title('This is figure of the real part .'); %给图形加上标题
xlabel('x'); %给x轴加标注
ylabel('real(y)'); %给y轴加标注
subpl
www.eeworm.com/read/257010/11960291
m exa20.m
t0= 0; tfinal =5; % time interval
x0 = [1, 0]; % initial conditions
% [t,x] = ode23('pendulum', t0, tfinal, x0); % use with MATLAB 4
tspan = [t0, tfinal];
www.eeworm.com/read/257010/11960700
m barcycle.m
% This function obtains a plot of the load cycle for a given interval.
% The demand interval and the load must be defined by the variable data
% in a three-column matrix. The first two columns are
www.eeworm.com/read/257009/11961157
m mag_field.m
% M-file: mag_field.m
% M-file to calculate the net magetic field produced
% by a three-phase stator.
% Set up the basic conditions
bmax = 1; % Normalize bmax to 1
freq = 60;
www.eeworm.com/read/154210/11982704
m plotcorana.m
function [z, a] = coranaEval(per)
i=0;
a=-0.9:per:0.9;
sz=size(a,2);
z=zeros(sz,sz);
for x=a
i=i+1; j=0;
for y=a
j=j+1;
z(i,j)=coranaFeval([x y]);
end
end
%Done!
%First let's look at it
www.eeworm.com/read/154210/11982741
m orderbasedexample.m
echo on
% This script shows how to use the ga using an order-based representation.
% You should see the demos for
% more information as well. gademo1, gademo2, gademo3
global distMatrix
% Setting the
www.eeworm.com/read/154209/11983024
m phone.m
function phone(action)
%PHONE Signal processing and the touch-tone phone.
% Ned Gulley, 6-21-93
% Copyright (c) 1988-98 by The MathWorks, Inc.
% $Revision: 5.6 $ $Date: 1997/11/26 20:13:
www.eeworm.com/read/154209/11983140
m filtdem.m
function slide=filtdem
% FILTDEM Filter design and filtering demo.
% This demonstration designs a filter with the Signal Processing Toolbox
% and applies it to a signal made up of harmonic com
www.eeworm.com/read/343020/11983290
m plotsoundspeed.m
function [NPlt, XLabels] = PlotSoundSpeed(Layer, ZTop)
NPlt = 5;
XLabels = {'Cp (m/s)', 'Rho (kg/m^3)', 'Cs (m/s)', 'Alpha_p (dB/lambda)', 'Alpha_s (dB/lambda)'};
subplot(1,NPlt, 1);
hold on;
p