代码搜索:smooth

找到约 1,485 项符合「smooth」的源代码

代码结果 1,485
www.eeworm.com/read/104094/15710309

cpp simpengine.cpp

#define WIN32_LEAN_AND_MEAN #define WIN32_EXTRA_LEAN #include "simpengine.h" void CSimpEngine::OnPrepare() { glEnable(GL_DEPTH_TEST); glEnable(GL_SMOOTH); glClear(GL_COLOR_BUFFER_BIT | G
www.eeworm.com/read/264046/11331656

m univ.m

function [fit,fitse,trend,trendse,comp,y0] = univ(y, par, tmodel, nvr, tar, Interv, smooth) % UNIV Trend + Auto-Regression (AR) univariate analysis % % [fit,fitse,trend,trendse,comp,y0]=univ(y,ARp
www.eeworm.com/read/425508/2006340

c pwf.c

/* Version 3.3 Last modified: December 26, 1995 */ #include "typedef.h" #include "basic_op.h" #include "ld8k.h" static Word16 smooth = 1; static Word16 LarOld[2] = {0, 0}; /****
www.eeworm.com/read/397348/2403394

mk subdir.mk

# targets to build TARGETS-contrib-plugins := \ libng/contrib-plugins/flt-smooth.so \ libng/contrib-plugins/bilinear.so \ libng/contrib-plugins/cubic.so \ libng/contrib-plugins/linear-blend.so \
www.eeworm.com/read/295441/8161919

cpp cal.cpp

#include #include #include #include double **TwoArrayAlloc(int, int); void TwoArrayFree(double **); double SMOOTH5(double *x,double *y,double **z,int n,i
www.eeworm.com/read/246054/12759927

html t10.html

Qt Tutorial - Chapter 10: Smooth as Silk
www.eeworm.com/read/494102/6388301

java effectimage.java

import java.awt.*; import java.awt.image.*; //采用像素的方式,提高图像的处理速度 public class EffectImage { public final static int RENDERING_FAST = 0; public final static int RENDERING_SMOOTH = 1;
www.eeworm.com/read/38039/1092071

mnu cosm_lines.mnu

LINES 直线 # remove the # sign and enter foreign help string in this line Normal 法向 Default display of lines. 缺省直线显示。 Smooth 光滑 Enable display of smoothed lines. 允许平滑的直线显示。 Done 完成 Return to previous m
www.eeworm.com/read/388600/2549322

sconstruct

from rsfproj import * Fetch('alaska.H','alaska') Flow('smo','alaska.H','dd form=native | smooth rect1=2') def raster(title,label1,label2): return ''' grey pclip=100 wheretitle=t wherexlabel
www.eeworm.com/read/432386/8607316

m tsmooth.m

function s=tsmooth(Y,w) % Convolution-based triangular smooth % tsmooth(Y,w) smooths vector Y by a triangular function of halfwidth w % T. C. O'Haver, 1988. v=conv(boxcar(w),boxcar(w)); S=conv(Y,v)