代码搜索:伏安法
找到约 10,000 项符合「伏安法」的源代码
代码结果 10,000
www.eeworm.com/read/178338/9407282
doc svpwm(硬件法)程序.doc
www.eeworm.com/read/372278/9514445
m 最小条件法.m
A= [0 -3 -20;-9 3 -7; -14 10 0];
syms x y ;
B=[0 x 2*x;y x+y 2*x+y;2*y x+2*y 2*x+2*y]; %各测点的综合旋转量。
C=A+B; %矩阵求和。
Y=max(A); %对于矩阵A,y=max(A)给出一个向量Y,他包含矩阵A每一列的最大值。
Z=max(Y); %求出矩阵A中的最大值。
[
www.eeworm.com/read/372278/9514447
asv 最小条件法.asv
A= [0 -3 -20;-9 3 -7; -14 10 0];
syms x y ;
B=[0 x 2*x;y x+y 2*x+y;2*y x+2*y 2*x+2*y]; %各测点的综合旋转量。
C=A+B %矩阵求和。
Y=max(A); %对于矩阵A,y=max(A)给出一个向量Y,他包含矩阵A每一列的最大值。
Z=max(Y); %求出矩阵A中的最大值。
[m,
www.eeworm.com/read/175756/9534578
swf 桶式排序法.swf
www.eeworm.com/read/371303/9556795
pdf 016_回溯法.pdf
www.eeworm.com/read/167536/9964692
txt 代入法加密文件.txt
1、字母映射:
X--Y--Z--A--B--C--D--E--F--G--H--I--J--K--L--M--N--O--P--Q--R--S--T--U--V--W
2、明文输入框:
Passage One
11. Both John and Sue joined the
staff of a successful public relations firm in
www.eeworm.com/read/362885/9977496
txt 排序 -- 冒泡排序法.txt
/******************************************************************************************************
** Program Name : Bubble Sort
** Author : Lu Jian Hua
** Time : 2007-9-5
****
www.eeworm.com/read/362885/9977545
txt 排序 -- 选择排序法.txt
/******************************************************************************************************
** Program Name : Selection Sort
** Author : Lu Jian Hua
** Time : 2007-9-5
*
www.eeworm.com/read/164541/10103566
cpp newton迭代法.cpp
#include
#include
double f(double x)
{
double y=x-exp(-x);
return y;
}
double d(double x)
{
double y=1+exp(-x);
return y;
}
void g(double x0,double x1,double e)
www.eeworm.com/read/359101/10165916
cpp 牛顿迭代法.cpp
#include
#include
#define N 100
#define EPS 1e-6
#define ETA 1e-8
void main()
{
float f(float);
float f1(float);
float x0,y0;
float Newton(float (*)(float),float (*