代码搜索:伏安法
找到约 10,000 项符合「伏安法」的源代码
代码结果 10,000
www.eeworm.com/read/289834/8523919
m ch10_2_2.m
%频率采样法
Hd = zeros(11,11); Hd(4:8,4:8) = 1;
[f1,f2] = freqspace(11,'meshgrid');
mesh(f1,f2,Hd), axis([-1 1 -1 1 0 1.2]), colormap(jet(64))
h = fsamp2(Hd);
figure, freqz2(h,[32 32]), axis([-1 1 -1
www.eeworm.com/read/289834/8523922
m ch10_2_3.m
%窗口法
%利用函数find1
Hd = zeros(11,11); Hd(4:8,4:8) = 1;
[f1,f2] = freqspace(11,'meshgrid');
mesh(f1,f2,Hd);
axis([-1 1 -1 1 0 1.2]), colormap(jet(64))
h = fwind1(Hd,hamming(11));
figure, freqz2(h,[
www.eeworm.com/read/389019/8554311
h trid.h
//解三对角方程组的追赶法
int trid(float a[],float b[],float c[],float f[])
{
float s[n],t[n],temp;
int i;
s[0]=0;t[0]=1;
for(i=0;i
www.eeworm.com/read/432739/8577148
asv areafind.asv
function [a,b]=areafind(t0,h,c)
%利用进退法求出,调用函数为g,t0为初始值,h为步长,c为步长的系数
a=t0;
b=t0+h;
while 1
if g(a)
www.eeworm.com/read/288935/8591392
cht h_client.cht
[General]
Language=Chinese (Traditional)
Charset=136
Font=PMingLiU
fontsize=9
[TSplashForm]
Title=中國黑客學院
[THgzVip]
Caption=鴿子 中國黑客學院簡單修改版 hkxy.net
Sound1=本機沒有可用的音效卡設備,您將無法使用語音功能!
IPtoAdd
www.eeworm.com/read/432093/8633459
plg file.plg
礦ision3 Build Log
Project:
D:\输入法\Project_3\File.uv2
Project File Date: 01/21/2006
Output:
Build target 'Target 1'
compiling T9_V1.c...
link
www.eeworm.com/read/286602/8757332
txt 例6.5.txt
例6.5 输出数组中的全部元素。
假设有一个整型数组a,有10个元素。要输出各元素的值有3种方法:
(1) 下标法
#include
using namespace std;
int main( )
{ int a[10];
int i;
for(i=0;i>a[i]; //引用数组元素a[i]
www.eeworm.com/read/386257/8759251
m myeulerpro.m
function [Xout,Yout]=MyEulerPro(fun,x0,xt,y0,PointNumber)
%MyEulerPro 用改进的欧拉法解微分方程
if nargin
www.eeworm.com/read/386257/8759446
m opt_nelder.m
function [xo,fo] =Opt_Nelder(f,x0,TolX,TolFun,MaxIter)
%Nelder-Mead法用于多维变量的最优化问题,维数>=2.
N = length(x0);
if N == 1 %一维情况,用二次逼近计算
[xo,fo] = Opt_Quadratic(f,x0,TolX,TolFun,MaxIter);
return
www.eeworm.com/read/385946/8775777
cpp ex_1.cpp
/*
Description:设计一个类模板Find,用于对一个有序数组采用二分法查找指定数据的元素下标
Date:2007/11/30
*/
#include
#define MAX 100 //数组最大长度
template class Find
{private:
T A[MAX];
int n; //数组长度
pub