代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/38039/1090453
mnu normals.mnu
NORMALS 法线
#
Select#Srf 选取曲面
Select the surface for which normal vectors should be displayed.
选定需要显示法向量的曲面
Change#Grid 改变栅格
Change spacing for normal vectors grid.
改变法向量网的间距
Scale 比例
Change normal ve
www.eeworm.com/read/38039/1090846
mnu seldir.mnu
SEL#DIRECT 选取方向
#
Norm#Plane 垂直平面
The direction will be normal to a plane.
方向为平面法向。
AxisEdgeCurv 轴边曲线
The direction will be tangent to an axis, edge or entity.
方向为轴,边或图元的切向。
Quit 退出
Quit the menu.
退出
www.eeworm.com/read/38039/1091702
mnu dtmpln_act.mnu
%PINNED
DATUM#PLANE 基准平面
#
Through 穿过
Create a datum plane through the selected object.
创建穿过选取对象的基准平面。
Normal 法向
Create a datum plane normal to the selected object.
创建与所选对象垂直的基准平面。
Parallel 平行
Create
www.eeworm.com/read/481665/1294588
txt 调试记录.txt
本程序采用纵向显示两行数据的方法,基本实现了预期目标,唯一的遗憾是还没有研究明白如何实现图像更新时不采用清屏的方法而是用割补法进行图像更新。
www.eeworm.com/read/475745/1382445
java bubblesorting.java
//用冒泡法实现排序.
class BubbleSorting {
public static void main(String args[]){
//最初的数组.
int []list={1,5,4,2,3,8,9,7,6,12};
//显示最初的数组.
System.out.println("最初数组:");
for(int i=0;i
www.eeworm.com/read/455642/1609716
java bubblesorting.java
//用冒泡法实现排序.
class BubbleSorting {
public static void main(String args[]){
//最初的数组.
int []list={1,5,4,2,3,8,9,7,6,12};
//显示最初的数组.
System.out.println("最初数组:");
for(int i=0;i
www.eeworm.com/read/452570/1653898
java sample4_6.java
/*
* 示例程序Sample4_6: LEquations类的求解三对角线方程组的追赶法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Matrix;
import javaalgorithm.algorithm.LEquations;
public class Sample4_6
{
www.eeworm.com/read/452570/1653909
java sample5_8.java
/*
* 示例程序Sample5_8: NLEquations类的求非线性方程组一组实根的梯度法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.NLEquations;
public class Sample5_8
{
public static void main(String[] a
www.eeworm.com/read/452570/1653942
java sample5_12.java
/*
* 示例程序Sample5_12: NLEquations类的求实函数或复函数方程一个复根的蒙特卡洛法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Real;
import javaalgorithm.algorithm.Complex;
import javaalgorithm.algo
www.eeworm.com/read/452570/1653944
java sample3_18.java
/*
* 示例程序Sample3_18: Matrix类的求实对称矩阵特征值与特征向量的雅可比法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Matrix;
public class Sample3_18
{
public static void main(String[] args)