代码搜索:Draw
找到约 10,000 项符合「Draw」的源代码
代码结果 10,000
www.eeworm.com/read/432936/8561874
m banana_draw.m
% banana_draw.m
% 绘制函数图形
x=[-1.5:0.125:1.5];
y=[-0.6:0.125:2.8];
[X,Y]=meshgrid(x,y);
Z=100*(Y-X.*X).^2+(1-X).^2;
mesh(X,Y,Z);
hidden off;
title('function of banana')
hold on;
plot3(1,1,1,'k
www.eeworm.com/read/432484/8602847
m normal_draw.m
fid=fopen('Normal_0_1.txt','r');
data=fscanf(fid,'%g');
myhist(data,100);
fclose(fid);
hold on;
x=-5:0.01:5;
y=normpdf(x,0,1); %(x,0,sqrt(3.6)) (x,-2,1)
plot(x,y,'r');
title
www.eeworm.com/read/388426/8610053
m draw_abnet.m
www.eeworm.com/read/431224/8697356
m fm_draw.m
function [x,y] = fm_draw(varargin)
% FM_DRAW draw the PSAT Simulink library component masks
%
%Author: Federico Milano
%Date: 11-Nov-2002
%Update: 31-Jan-2003
%Version: 1.0.0
%
%E-mail:
www.eeworm.com/read/287213/8706744
cur draw_cur.cur
www.eeworm.com/read/287166/8713662
h r_draw.h
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_draw.h,v 1.6 2001/03/13 22:14:20 stroggonmeth Exp $
//
// Copyrig
www.eeworm.com/read/287166/8714183
c r_draw.c
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_draw.c,v 1.12 2001/04/01 17:35:06 bpereira Exp $
//
// Copyright
www.eeworm.com/read/287166/8714660
c hw_draw.c
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: hw_draw.c,v 1.18 2001/04/01 17:35:07 bpereira Exp $
//
// Copyright
www.eeworm.com/read/286662/8751872
m make_a_draw.m
function [test_indices, train_indices] = make_a_draw(how_many, out_of_how_many)
%Choose a number of indices out of the maximum number allowed.
indices = randperm(out_of_how_many);
train_indi
www.eeworm.com/read/286240/8780823
c draw-pixmap.c
/*
* draw-pixmap.c - demonstrate drawing of a pixmap on screen, after
* reading its contents from a bitmap file.
*/
#include
#include /* BitmapOpenFa