代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/241836/13113945
m netzbild.m
function kk=netzbild
global ed dd pn m1 m2 m3 x y e d sid g f dir s t az c ai bi fi
kk=0;
title1 = '误差椭圆比例 ';
prompt011 = {'请输入误差椭圆比例'};
lines= 1;
d11= {'100'};
c12 = inputdlg(prompt011,tit
www.eeworm.com/read/326815/13115131
m qpsk.m
%file name: qpsk.m
%Written by Dr. James S. Kang, Cal Poly Pomona.
%Plot of QPSK waveform and spectrum.
%d = input data such as [1 1 0 0 1 0 0 1 1 1].
%fb = data rate in bps.
%fc = carrier freque
www.eeworm.com/read/241807/13115243
m exp2_4_.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
hold on %允许在同一坐标系下绘制不同的图形
plot(t,sin(t),'r:*')
plot(t,cos(t))
plot(t,-cos(t),'k')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
hold off %覆盖旧图
www.eeworm.com/read/241807/13115269
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/241695/13124993
m resplot.m
% RESPLOT.M (RESult PLOTing)
%
% This function plots some results during computation.
%
% Syntax: resplot(Chrom,IndAll,ObjV,Best,gen)
%
% Input parameters:
% Chrom - Matrix contai
www.eeworm.com/read/241695/13125017
m resplot.m
% RESPLOT.M (RESult PLOTing)
%
% This function plots some of the results during computation.
%
% Syntax: resplot(Chrom,IndAll,ObjV,Best,gen)
%
% Input parameters:
% Chrom - Matrix
www.eeworm.com/read/241645/13127762
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/241645/13127818
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/326535/13136541
m philips.m
clear all
r=0.1;
i=1;
for x=0:0.1:5
G(i)=(5.5-x).*exp(x)-0.5.*exp(-x)+0.5*(sin(10*x+1)+cos(23*x+2));
j=1;
for y=0:0.1:5
K(i,j)=exp(-(abs(x-y)));
A(i,j)=K(i,j)*0.1;
www.eeworm.com/read/326390/13144595
m shifen.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%两路正弦信号的时分复用%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%
fs=10000;
t=0:1/fs:0.1;
f1=50;
f2=100;
x1=sin(2*pi*f1*t);
x2=sin(2*pi*f2*t);
y=[x1(1) x2(1)];
for k=2:1001
y=