-
mcmc在MATLAB中的源码
mcmc在MATLAB中的源码
- 2022-06-01 12:15:39下载
- 积分: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
-
关于移动通信工程常用的计算工具
关于移动通信工程常用的计算工具-works on the commonly used mobile computing tools
- 2022-01-28 18:21:28下载
- 积分:1
-
阿伦方差小程序编程
阿伦方差算法实现,适合初学者学习 。
指出当今风行于世的阿仑方差有错误。详细分析了阿仑方差的来龙去脉,指出阿仑方差前提出错,以至物理意义费解。本文在扬弃阿仑方差的基础上,提出物理意义十分直观的自差统计这一新概念,既能表征频率稳定度,又可表征基准的不确定度。用于雷达测速的精度分析,简洁方便
- 2023-04-17 04:35:03下载
- 积分:1
-
Meschach 可以解稠密或稀疏线性方程组、计算特征值和特征向量和解最小平方问题,另外还有其它功能。它为双精度数和复数提供了近 400 个函数。它提供的教程以...
Meschach 可以解稠密或稀疏线性方程组、计算特征值和特征向量和解最小平方问题,另外还有其它功能。它为双精度数和复数提供了近 400 个函数。它提供的教程以说明性的小案例研究的形式介绍了这些函数。-Meschach is a C-language library of routines for performing matrix computations
- 2022-01-31 19:56:02下载
- 积分:1
-
已知一个单链表L编写一个删除L中值为x结点的直接前驱结点的程序。
#include
#include
#include
typedef int ElemType; // 定义数据结构元素的数据类型
#define LIST_INIT_SIZE 10 // 线性表存储空间的初始分配量
#define LISTINCREMENT 5 // 线性表存储空间的分配增量
// 线性表的动态分配顺序存储结构
ty
- 2022-03-13 17:25:00下载
- 积分:1
-
龙格
龙格-库塔法是数值计算的重要方法
本例子简明扼要,浅显好懂-Runge- Kutta numerical method is an important method to the example of concise and simple to understand
- 2022-08-13 21:22:11下载
- 积分:1
-
信道化的Matlab仿真程序
信道化的Matlab仿真程序。利用FFT进行均匀信道化,程序可扩展。
- 2022-01-22 05:47:55下载
- 积分:1
-
数据库基础知识
数据库 fundamentalsDatabase fundamentalsDatabase fundamentalsDatabase fundamentalsDatabase fundamentalsDatabase fundamentalsDatabase fundamentalsDatabase fundamentalsDatabase fundamentalsDatabase fundamentalsDatabase 基本面
- 2022-11-09 02:00:03下载
- 积分:1
-
本程序包括5种数字滤波算法。
本程序包括5种数字滤波算法。-this program includes five digital filtering algorithms.
- 2023-01-03 11:10:04下载
- 积分:1