-
FFT parallel code implementation in c
FFT parallel code implementation in c
- 2022-05-09 00:24:36下载
- 积分:1
-
随机有限元分析的经典程序,分析结构可靠度等方面应用
随机有限元分析的经典程序,分析结构可靠度等方面应用-Stochastic finite element analysis of the classical procedures, analysis of structural reliability applications, etc.
- 2022-03-04 06:04:44下载
- 积分:1
-
Machine learning
logistic regression SVM 带有形象化展示,可以使用鼠标放置两类训练样本,观察分界线变化过程
- 2023-08-11 13:05:04下载
- 积分:1
-
Delphi 写的常用的基本算法 源代码
Delphi 写的常用的基本算法 源代码 -Written in Delphi source code for the basic algorithm used
- 2022-03-19 02:14:16下载
- 积分:1
-
该程序用来处理微分方程系统的,用来化简一个微分系统的,特别是高维的系统...
该程序用来处理微分方程系统的,用来化简一个微分系统的,特别是高维的系统-The procedures used to deal with differential equations system for the simplification of a differential system, especially high-dimensional system
- 2022-05-31 00:54:12下载
- 积分:1
-
选票程序
选票程序-ballot procedures
- 2022-03-10 08:46:58下载
- 积分:1
-
C、 使用 ADT 包括 stack.h、 stack.c 和驱动程序的堆栈
C、 使用 ADT 包括 stack.h、 stack.c 和驱动程序堆栈。堆栈使用 c、 ADT 包括 stack.h、 stack.c 和使用 c、 ADT 包括 stack.h、 stack.c 和使用 c、 ADT 包括 stack.h、 stack.c 和使用 c、 ADT 包括 stack.h、 stack.c 和使用 c、 ADT 包括 stack.h、 stack.c 和驱动程序的驱动程序 programStack 驱动程序 programStack 驱动程序 programStack 驱动程序 programStack
- 2022-03-25 14:56:58下载
- 积分:1
-
地震勘探频率-波数域波动方程正演相移加插值法正演程序
资源描述地震勘探中,频率-波数域PSPI波动方程正演模拟C语言程序,适合与初学正演的人,其在相移法的基础上利用插值提高了算法精度,同时相比时域有限差分运算更快,但仍然不能适应横向速度变化过大的速度模型。
- 2022-07-08 04:53:42下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
圆孔的夫琅和费衍射,以动画的形式表式衍射的过程,以及最后衍射的图样(来源于http://luobo.ycool.com/post.701424.html)...
圆孔的夫琅和费衍射,以动画的形式表式衍射的过程,以及最后衍射的图样(来源于http://luobo.ycool.com/post.701424.html)-Round hole of Fraunhofer diffraction to the form of table-style animation of the process of diffraction, and the final diffraction pattern (from http://luobo.ycool.com/post.701424.html)
- 2022-02-19 23:19:55下载
- 积分:1