代码搜索:微分几何

找到约 3,133 项符合「微分几何」的源代码

代码结果 3,133
www.eeworm.com/read/269453/11097485

m odefun_linimp_mass.m

%odefun_LinImp_mass.m %线性隐式常微分方程 function mass = odefun_LinImp_mass(t,y) mass = y + 1;
www.eeworm.com/read/237352/13967538

m vdp_3.m

function dx = vdp_3(t,x,para) % 为题3 Val-der-Pol的微分方程 A = para.A; B = para.B; dx = [x(2); A*(1-x(1)^2)*x(2)-B*x(1)];
www.eeworm.com/read/200130/15440706

m odefun_linimp_mass.m

%odefun_LinImp_mass.m %线性隐式常微分方程 function mass = odefun_LinImp_mass(t,y) mass = y + 1;
www.eeworm.com/read/164122/10128114

txt matlab函数工具箱汇总.txt

matlab工具箱函数汇总 icybird 发表于 2005-4-17 22:58:52 附录Ⅰ 工具箱函数汇总 Ⅰ.1 统计工具箱函数 表Ⅰ-1 概率密度函数 函数名 对应分布的概率密度函数 betapdf 贝塔分布的概率密度函数 binopdf 二项分布的概率密度函数 chi2pdf 卡方分布的概率密度函数 exppdf 指数分
www.eeworm.com/read/362570/9990740

cpp poj1755_计算几何_半平面交.cpp

#include #include #define inf 1e30 #define eps 1e-8 using namespace std; const int MAXN = 110; int n; double u[MAXN], v[MAXN], w[MAXN]; int dcmp(double x){ if (x < -
www.eeworm.com/read/461196/7232081

cpp soj2434计算几何线段相交问题.cpp

#include #define min(a,b) (ab?a:b) int direction(int a,int b,int c,int d,int e,int f) { int p1x = e-a; int p1y = f-b; int p2x = c-a;