代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/360546/6352176
f90 bsort.f90
! 冒泡排序法范例
! By Perng 1997/8/29
program BUBBLE_SORT_DEMO
implicit none
integer, parameter :: N=10
integer :: A(N)=(/6,2,8,4,0,9,3,5,1,7/) ! 待排序的数据
write(*,"('Source=>',10I3)") A
call B
www.eeworm.com/read/494682/6359987
java rsa.java
package DES_RSA;
public class RSA{
//存放素数
int prime[]=new int[1305];
//用筛选法求素数
int p[]=new int[10005];
//A用户的公,私钥
private static long aN,aE,aD;
//B用户的公,私钥
private static long bN,bE,bD;
//C
www.eeworm.com/read/494451/6376599
cpp condition_sentence.cpp
//基于LL(1)法的条件语句语法语义分析程序
#include
#include
#include
#include
#include
enum keyword{ $right_paren,$left_paren,$mul,$div,$add,$sub,$fenhao,
www.eeworm.com/read/494226/6380509
java finalfunctiondemo.java
class 宪法{
public final void 条文1(){
System.out.println("公民有选举权");
}
public final void 条文2(){
System.out.println("公民有被选举权");
}
}
class 婚姻法 extends 宪法{
public void 条文2(){
System
www.eeworm.com/read/488474/6487482
m mydcx.m
function [f,x]=mydcx(A,flag)
% 单纯形法
%输入A:增广阵,要求已有初始可行解
%A= [A d
% c f]
%基本可行解指示向量flag=1:Ar-1,按“行”的顺序存可行解“列”号
%-------------------------------------------------------------------
[Ar Ac]=si
www.eeworm.com/read/486202/6538121
m 5-7.m
%例程5-7 功率谱估计的周期图法
% e.g.5-7.m for example5-7;
% to test function of periodogram;
%Estimate the PSD with periodogram method(By formula directly)
clear;
% Case 1: N=256
N=256;
n=0:N-1;
f1=
www.eeworm.com/read/485355/6559686
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/485392/6561023
m 5-7.m
%例程5-7 功率谱估计的周期图法
% e.g.5-7.m for example5-7;
% to test function of periodogram;
%Estimate the PSD with periodogram method(By formula directly)
clear;
% Case 1: N=256
N=256;
n=0:N-1;
f1=
www.eeworm.com/read/484945/6569250
inl extremum.inl
// Extremum.inl 计算极值函数(方法)定义头文件
// Ver 1.0.0.0
// 版权所有(C) 何渝, 2002
// 最后修改: 2002.5.31.
#ifndef _EXTREMUM_INL //避免多次编译
#define _EXTREMUM_INL
//一维极值连分式法
template
void ExtremumF
www.eeworm.com/read/481332/6652703
txt 说明.txt
在本系统中实现了8FSK的调制解调,在解调时使用的是包络检测法。
8fsk.txt 中存放了调制的结果,orig1.txt和orig2.txt中是原数据。