代码搜索:normal
找到约 10,000 项符合「normal」的源代码
代码结果 10,000
www.eeworm.com/read/286532/8760786
html pll0_waveforms.html
Sample Waveforms for PLL0.vhd
Sample behavioral waveforms for design file PLL0.vhd
The following waveforms show the beh
www.eeworm.com/read/384270/8883981
c planesets.c
/*
GROUPING NEARLY COPLANAR POLYGONS INTO COPLANAR SETS
David Salesin
Filippo Tampieri
Cornell University
*/
/*
This code partitions a given set of arbitrary 3D polygons into
subse
www.eeworm.com/read/284304/8947938
m ans6_9.m
function y = ans6_9(miu,sigma,n)
y=round(mod(random('Normal',miu,sigma),1)*n);
www.eeworm.com/read/283939/8978160
m example0901.m
%Normal Distribution with mu=0 and sigma=1
x=-9:0.1:9;
p1=normpdf(x);
%Normal Distribution with mu=0 and sigma=3
mu=0;sigma=3;
p2=normpdf(x,mu,sigma);
q2=normcdf(x,mu,sigma);
%Normal Distri
www.eeworm.com/read/283939/8978199
m ill.m
%read data from 'illdata.m'
M=dlmread('illdata.m','\t');
%the data of the illness is in the first row.
ill=[M(1,:)];
%the data of the normal is in the second row.
nor=[M(2,:)];
%Histogram for
www.eeworm.com/read/382787/9000335
m contents.m
% CREWES raytracing tools
% Raytracing for v(z) and v(x,z)
%
%Demos and scripts
% RAYTRACE_DEMO ... interactive demonstration of v(z) raytracing capabilities
% RAYVXZ_DEMO ... demo the v(x,z) ray
www.eeworm.com/read/184417/9102261
html fglutessnormal.html
NAME
fgluTessNormal - specify a normal for a polygon
FORTRAN SPECIFICATION
SUBROUTINE
www.eeworm.com/read/184417/9102697
html tessnormal.html
NAME
gluTessNormal - specify a normal for a polygon
C SPECIFICATION
void gluTessNormal
www.eeworm.com/read/281650/9144345
c util.c
/*
* util.c
*
* ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
* MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcap@cfw.com)
*
* This program is free software; you can redistribut
www.eeworm.com/read/379363/9199736
cpp obstacle.cpp
#include "RVOSimulator.h"
#include "Obstacle.h"
namespace RVO {
Obstacle::Obstacle(const Vector2& a, const Vector2& b) {
_p1 = a;
_p2 = b;
_normal = normal(_p1, _p2);
}