代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/15750/538502
txt c语言库函数(v类字母).txt
函数名: vfprintf
功 能: 送格式化输出到一流中
用 法: int vfprintf(FILE *stream, char *format, va_list param);
程序例:
#include
#include
#include
FILE *fp;
in
www.eeworm.com/read/37150/899474
c onedim.c
/* 使用选择法排序 */
# include
void main()
{
int i, j, min, temp;
/* 定义一个整型得一维数组 */
int array[10];
/* 输入数据 */
printf("Please input ten integer: \n");
for(i=0; i
www.eeworm.com/read/35567/1059304
c onedim.c
/* 使用选择法排序 */
# include
void main()
{
int i, j, min, temp;
/* 定义一个整型得一维数组 */
int array[10];
/* 输入数据 */
printf("Please input ten integer: \n");
for(i=0; i
www.eeworm.com/read/37320/1072140
c++
#include
#include
//显示数组的函数模板
template void arr_put(T arr[],int size) {
for (int i=0 ;i
www.eeworm.com/read/38039/1090137
mnu genseldir.mnu
GEN#SEL#DIR 一般选取方向
# remove the # sign and enter foreign help string in this line
Plane 平面
Use a plane normal as a direction.
选取平面的法向
Crv/Edg/Axis 曲线/边/轴
Use a Curve, Edge, or Axis as a direction.
选取
www.eeworm.com/read/38039/1090269
mnu hilangle.mnu
HLT#ANGLE 加亮角
#
Near#Pick 临近拾取点
Slope will be calculated using surface normal in selected location.
用所选位置的曲面法向计算斜率。
Enter#Value 输入值
Input the slope value for which highlight curves will be calculated
www.eeworm.com/read/38039/1091323
mnu holemaking.mnu
HOLE#MAKING 孔加工
# remove the # sign and enter foreign help string in this line
Drill 钻孔
Drill holes using DRILL cycle.
用循环钻孔法钻孔
Face 表面
Counter Bore holes.
反向镗孔
Bore 镗孔
Create Bore sequence.
创建镗孔序列
C
www.eeworm.com/read/38039/1092466
mnu xtdist_typ.mnu
MEASURE#DIR 测量方向
#
Norm#To#Bnd 垂直于边
Distance will be measured along normal to the highlighted edge.
沿着加亮边的法向测量距离。
Along#Edge 沿边
Distance will be measured along the highlighted edge.
沿着加亮的边测量距离。
www.eeworm.com/read/452570/1653870
java sample5_2.java
/*
* 示例程序Sample5_2: NLEquations类的求非线性方程一个实根的牛顿法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Real;
import javaalgorithm.algorithm.NLEquations;
public class Sample5_2
{
www.eeworm.com/read/452570/1653873
java sample4_5.java
/*
* 示例程序Sample4_5: LEquations类的复系数方程组的全选主元高斯-约当消去法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Complex;
import javaalgorithm.algorithm.Matrix;
import javaalgorithm.algor