亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Exp

  • Hybrid Monte Carlo sampling.SAMPLES = HMC(F, X, OPTIONS, GRADF) uses a hybrid Monte Carlo algorithm

    Hybrid Monte Carlo sampling.SAMPLES = HMC(F, X, OPTIONS, GRADF) uses a hybrid Monte Carlo algorithm to sample from the distribution P ~ Exp(-F), where F is the first argument to HMC. The Markov chain starts at the point X, and the function GRADF is the gradient of the `energy function F.

    標簽: Carlo Monte algorithm sampling

    上傳時間: 2013-12-02

    上傳用戶:jkhjkh1982

  • 備份oracle數據庫腳本

    備份oracle數據庫腳本,更新Exp.txt文件的oracle登錄用戶名和密碼,就可以使用了

    標簽: oracle 備份 數據庫 腳本

    上傳時間: 2016-05-17

    上傳用戶:hphh

  • 本程序是一個行計算器(即對表達式求值)。計算器能實現加、減、乘、除、取余(%)和乘方(^)運算;能實現三角函數(正弦函數sin和余弦函數cos)

    本程序是一個行計算器(即對表達式求值)。計算器能實現加、減、乘、除、取余(%)和乘方(^)運算;能實現三角函數(正弦函數sin和余弦函數cos),求10為底的對數log,求2為底的對數ln,求e的指數冪Exp,其參數也可以是合法的表達式; 計算器并能對表達式的合法性進行測試,錯誤的能給出表達式錯誤的信息。 ] 輸入文件格式:第一行是一個正整數N,表示有多少行表達式。接下來的N行每一行是 一個表達式。表達式使用由浮點數(只用小數點表示)和運算符表示。 輸出格式:每個行輸出一個表達式的結果(浮點輸出結果使用小數點表示法表示,)

    標簽: sin cos 計算器 程序

    上傳時間: 2016-05-27

    上傳用戶:aeiouetla

  • matlab實現的多個基礎程序和報告并有流程圖(1) 繪出正弦信號波形及頻譜。 (2) 單極性歸零(RZ)波形及其功率譜

    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曲線,取樣時間無偏差。

    標簽: matlab 波形 程序 報告

    上傳時間: 2014-01-22

    上傳用戶:aix008

  • 這是編譯原理的一個實驗, 是把一個正則表達式轉化為不確定有窮自動機NFA的算法程序,朋興趣的朋友可以下載來看看哦。    一個正則表達式就是由普通字符(例如字符 a 到 z)以及特殊字符(稱為元字

    這是編譯原理的一個實驗, 是把一個正則表達式轉化為不確定有窮自動機NFA的算法程序,朋興趣的朋友可以下載來看看哦。    一個正則表達式就是由普通字符(例如字符 a 到 z)以及特殊字符(稱為元字符)組成的文字模式。該模式描述在查找文字主體時匹配的一個或多個字符串。正則表達式作為一個模板,將某個字符模式與所搜索的字符串進行匹配。    本實例的符號包括:    1. 基本正則表達式, 如ab    2. 重復, 如a*    3. 在各項中選擇, 如a|b       使用時在Convert的Reg Exp中點擊輸入正則表達式, 然后單擊Convert->to NFA就可以了。

    標簽: 字符 NFA 表達式

    上傳時間: 2016-06-22

    上傳用戶:wangchong

  • 計算全息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,

    計算全息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)))

    標簽: 20 close clear zeros

    上傳時間: 2014-10-13

    上傳用戶:wweqas

  • cordic methods describe essentially the same algorithm that with suitably chosen inputs can be used

    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]內的曲線。要求曲線的顏色為綠色

    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色系

    標簽: sin No pi 圖形

    上傳時間: 2017-03-30

    上傳用戶:84425894

  • 變步長梯形求積法

    變步長梯形求積法,并以Exp(-x*x)為例計算求積分

    標簽:

    上傳時間: 2013-12-16

    上傳用戶:qweqweqwe

  • Description Scientific calculator. Allows to perform caclulation with high precicion and implemen

    Description Scientific calculator. Allows to perform caclulation with high precicion and implements most populatr mathematical functions: sin, cos, tan, asin, acon, atan, Exp, log, sqr, floor and ceil. Also it make it possible to define your own function, store results in variables and use variable sin Expressions. Calculator store al formuls you have entered. Plot function can be used to draw graph of function with single argument. More detailed description of calculator is here.

    標簽: Description caclulation Scientific calculator

    上傳時間: 2014-01-25

    上傳用戶:familiarsmile

主站蜘蛛池模板: 大兴区| 南召县| 乌审旗| 腾冲县| 长垣县| 大连市| 阿荣旗| 鸡泽县| 宁都县| 苍南县| 建瓯市| 琼结县| 泸溪县| 荔浦县| 武义县| 昆山市| 香格里拉县| 台东县| 南充市| 扬中市| 沙田区| 于田县| 乌拉特后旗| 喜德县| 东城区| 黑山县| 南和县| 汶上县| 连云港市| 扎兰屯市| 敖汉旗| 定结县| 崇礼县| 夏邑县| 鄢陵县| 富宁县| 新密市| 南华县| 新巴尔虎右旗| 岑溪市| 绥棱县|