代码搜索:reverse

找到约 4,015 项符合「reverse」的源代码

代码结果 4,015
www.eeworm.com/read/101082/6244968

1 col.1

.TH col 1 .SH Name col \- filter reverse line feeds .SH Syntax .B col [\fI\-options\fR] .SH Description .NXR "col command" .NXR "line feed" "reversing" The .PN col command reads the standard input and
www.eeworm.com/read/101082/6246845

1 col.1

.TH col 1 .SH Name col \- filter reverse line feeds .SH Syntax .B col [\fI\-options\fR] .SH Description .NXR "col command" .NXR "line feed" "reversing" The .PN col command reads the standard input and
www.eeworm.com/read/485103/6564343

m nprocess.m

function [Xnew,mX,sX]=nprocess(X,Cent,Scal,mX,sX,reverse,show,usemse); %NPROCESS pre and postprocessing of multiway arrays % % % CENTERING AND SCALING OF N-WAY ARRAYS % % This m-file works in
www.eeworm.com/read/410359/11290818

css light.css

body { background-color: White; color: Black; } .reverse { background-color:Black; color:White; }
www.eeworm.com/read/409384/11329510

txt rfc0821.txt

RFC 821
www.eeworm.com/read/403154/11521362

cpp 11_2_1.cpp

#include void Reverse(int a[], int from, int to) { int t; for (int i = 0; i < (to - from + 1) / 2; i++) { t = a[from + i]; a[from + i] = a[to - i]; a[to - i] = t; }
www.eeworm.com/read/261418/11647313

c 牛顿法q.c

/*求函数y=x1^2+3*x2^2-4x1的极小值*/ #include"stdio.h" #include"math.h" #define N 50 /*a[N]表示梯度,b[N][N]表示Hesse矩阵*/ void function(float x1,float x2,float a [N],float b[N][N]) { a[0]=2*x1-4; a[1
www.eeworm.com/read/261416/11647329

c niudunfa.c

/*求函数y=x1^2+3*x2^2-4x1的极小值*/ #include"stdio.h" #include"math.h" #define N 50 /*a[N]表示梯度,b[N][N]表示Hesse矩阵*/ void function(float x1,float x2,float a [N],float b[N][N]) { a[0]=2*x1-4; a[1
www.eeworm.com/read/261414/11647788

c p.c

/*求函数y=x1^2+3*x2^2-4x1的极小值*/ #include"stdio.h" #include"math.h" #define N 50 /*a[N]表示梯度,b[N][N]表示Hesse矩阵*/ void function(float x1,float x2,float a [N],float b[N][N]) { a[0]=2*x1-4; a[1
www.eeworm.com/read/346459/11743303

m filtfilt.m

function y = filtfilt(b,a,x) % FILTFILT Zero-phase forward and reverse digital filtering. % Y = FILTFILT(B, A, X) filters the data in vector X with the % filter described by vectors A and B to c