C/C++ implementation of the Levenberg-Marquardt non-linear least squares algorithm. levmar includes double and single precision LM versions, both with analytic and finite difference approximated jacobians
標簽: Levenberg-Marquardt implementation non-linear algorithm
上傳時間: 2013-12-28
上傳用戶:gxf2016
matlab實現的多個基礎程序和報告并有流程圖(1) 繪出正弦信號波形及頻譜。 (2) 單極性歸零(RZ)波形及其功率譜,占空比為50%。 (3) 升余弦滾降波形的眼圖及其功率譜。滾降系數為0.5。發送碼元取值為0、2。 (4) 最佳基帶系統的Pe~Eb\No曲線,升余弦滾降系數a=0.5,取樣值的偏差是Ts/4。 (5) Pe~Eb\No,升余弦滾降系數a=0.5,取樣時間無偏差,但信道是多徑信道,C(f)=abs(1-0.5*exp(-j*2*pi*f*dt)),dt=Ts/2。 (6) 仿真數字基帶傳輸系統,包括輸入、輸出信號波形及其功率譜,眼圖(升余弦滾降系數a=0.5),Pe~Eb\No曲線,取樣時間無偏差。
上傳時間: 2014-01-22
上傳用戶:aix008
這是編譯原理的一個實驗, 是把一個正則表達式轉化為不確定有窮自動機NFA的算法程序,朋興趣的朋友可以下載來看看哦。 一個正則表達式就是由普通字符(例如字符 a 到 z)以及特殊字符(稱為元字符)組成的文字模式。該模式描述在查找文字主體時匹配的一個或多個字符串。正則表達式作為一個模板,將某個字符模式與所搜索的字符串進行匹配。 本實例的符號包括: 1. 基本正則表達式, 如ab 2. 重復, 如a* 3. 在各項中選擇, 如a|b 使用時在Convert的Reg Exp中點擊輸入正則表達式, 然后單擊Convert->to NFA就可以了。
上傳時間: 2016-06-22
上傳用戶:wangchong
用MATLAB仿真的BP神經網絡,采用LM算法,訓練出一個比較好的訓練曲線,一塊發上來共享!
上傳時間: 2016-07-29
上傳用戶:jkhjkh1982
計算全息close all clc clear A=zeros(64) A(15:20,20:40)=1 A(15:50,20:25)=1 A(45:50,20:40)=1 A(30:34,20:35)=1 % ppp=exp(rand(64)*pi*2*i) A=A.*ppp % Author s email: zjliu2001@163.com figure imshow(abs(A),[]) Fa=fft2(fftshift(A)) Fs=fftshift(Fa) Am=abs(Fs) % amplitude Ph=angle(Fs) % phase s=11 % 這表示邊長嗎? cgh=zeros(64*s) th=max(max(abs(Fs)))
上傳時間: 2014-10-13
上傳用戶:wweqas
bp神經網路在地震預測中的應用,分別采用gd、gdx、lm訓練方法,供大家參考~
上傳時間: 2017-01-14
上傳用戶:zgu489
uC/OS下的SD卡驅動,硬件平臺LM6938,請包含LM的庫函數文件
上傳時間: 2017-01-17
上傳用戶:王者A
cordic methods describe essentially the same algorithm that with suitably chosen inputs can be used to calculate a whole range of scientific functions including sin, cos, tan, arctan, arcsin, arccos, sinh, cosh, tanh, arctanh, log, exp, square root and even multiply and divide. the method dates back to volder [1959], and due to its versatility and compactness, it made possible the microcoding of the hp35 pocket scientific calculator in 1972. here is some code to illustrate the techniques. ive split the methods into three parts linear, circular and hyperbolic. in the hp35 microcode these would be unified into one function (for space reasons). because the linear mode can perform multiply and divide, you only need add/subtract and shift to complete the implementation. you can select in the code whether to do the multiples and divides also by cordic means. other multiplies and divides are all powers of 2 (these dont count). to eliminate these too, would involve ieee hackery.
標簽: essentially algorithm describe suitably
上傳時間: 2017-03-02
上傳用戶:litianchu
1. 在No.1圖形窗口中繪制 y=sin(x)在[0,2*pi]內的曲線。要求曲線的顏色為綠色,線型為 點劃線,用*標示坐標點,在x軸的附近用 黑體 標注 ‘x軸’字樣,在圖形的上方加上標題 ‘正弦函數’,嚴格控制x,y軸分度相等,并開啟網格。 2. 在No.2圖形窗口中創建四個子窗口,在第一、二子窗口中用不同的方法同時繪制 y=x^2,y=-x^2,y=x^2*sin(x) 在[0,2*pi]內的曲線,并要給出標注 在第三個子窗口中繪制 三維曲線 3. 把No.3圖形窗口分成五個子窗口,分別用plot3 mesh meshc meshz surf 來繪制 z=x*exp(-x^2-y^2) 在 -5=<x,y<=5 內的空間曲面圖形,說明他們的區別,其中要求在用surf繪制的窗口內加入位置為[1,0.5,2]的光源,加入顏色標尺,采用spring色系
上傳時間: 2017-03-30
上傳用戶:84425894
變步長梯形求積法,并以exp(-x*x)為例計算求積分
標簽:
上傳時間: 2013-12-16
上傳用戶:qweqweqwe