代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/417736/10978300
m 例2-28.m
>> clear;
>> a=[-1,0,0;0,-2,0;0,0,-3]
>> x0=[1;1;1];
>> t=0:0.1:1.0;
>> for i=1:length(t)
>> plot3(x(1,:),x(2,:),x(3,:));
>> grid on
www.eeworm.com/read/417736/10978410
m 例8-9.m
>> u=test.time;
>> x1=test.signals.values;
>> plot(u,x1),grid on
>> xlabel('kT')
>> ylabel('x1(KT)')
www.eeworm.com/read/417736/10978412
m 例8-7.m
>> [t,x,y]=sim('test2',10);
>> clf,hold on
>> plot(t,y(:,1),'b')
>> stairs(t,y(:,2),'r')
>> stairs(t,y(:,3),'g'),hold off
>> axis([0 10 -1.1 1.1]),box on
>> legend('正弦波','输出','三角形',4)
www.eeworm.com/read/417673/10980909
m xorsurf.m
% Surface plot for XOR FIS
blackbg;
subplot(2,2,1);
xorfis = readfis('xor.fis');
gensurf(xorfis);
view([-20 55]);
set(gca, 'box', 'on');
%frot3d on
www.eeworm.com/read/271760/10981940
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/271760/10981985
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/271693/10983680
m cdfplotlow.m
function cdfplotlow(x, plottype)
% DESCRIPTION cdfplotlow(x, plottype)
% CDF plot of the input matrix for each
% column separately. By use of a log scale
% the lower part of the input is highlight
www.eeworm.com/read/271693/10983719
m cdfplothigh.m
function cdfplothigh(x, plottype)
% DESCRIPTION cdfplothigh(x, plottype)
% CDF plot of the input matrix for each
% column separately. By use of a log scale
% the higher part of the input is highli
www.eeworm.com/read/271693/10983759
m plothex.m
function plothex(xyb, fib, chgroup)
% DESCRIPTION plothex(xyb, fib, chgroup)
% Plots the homogeneous hexagon cell pattern with BS identities. If chgroup
% is specified the hexagons are filled with a
www.eeworm.com/read/417350/10993209
txt 08-06.txt
%例8-6 给MATLAB 7的图形添加标题。
>> x = 0:.1:2;
>>y1=sin(x);
>>y2 = sin(x-0.25);
>>y3 = sin(x-0.5);
>> plot(x,y1,'-.b', x,y2,'--r*', x,y3,'-.gh')
>> title('There three lines')
>>