本程序計(jì)算的是由U18(18/4)表計(jì)算混料均勻設(shè)計(jì)5水平18次試驗(yàn)的情況 具體算法可以參照《正交與均勻試驗(yàn)設(shè)計(jì)(方開泰,馬長興著,科學(xué)出版社出版)》一書144頁開始的混料均勻設(shè)計(jì)一節(jié)。 或參見算法描述文檔。
上傳時(shí)間: 2014-11-30
上傳用戶:weiwolkt
計(jì)算這個(gè)智力題: 在這個(gè)乘法算式里,每一個(gè)字母代表著0-9中的一個(gè)數(shù),不同字母代表不同數(shù)。 A B C D E F G H * A J --------------------- E J A H F D G K C B D F H A J E C --------------------- C C C C C C C C C 請問,C 代表哪個(gè)數(shù)字?
上傳時(shí)間: 2013-12-30
上傳用戶:stampede
I often need a simple function generator. Just to generate a certain frequency. After all the years I ve worked with electronics, I still haven t got me one. Even though I need it now and then, I just couldn t seem to justify the cost of one. So, standard solution - build one yourself. I designed a simple sinewave generator based on a Analog Devices AD9832 chip. It will generate a sinewave from 0.005 to 12 MHz in 0.005 Hz steps. That s pretty good, and definitely good enough for me ! But while waiting for the AD9832 chip to arrive, I came up with a very simple version of the DDS synth, using just the 2313 and a resistor network.
標(biāo)簽: frequency generator function generate
上傳時(shí)間: 2013-12-17
上傳用戶:thesk123
N位同學(xué)站成一排,音樂老師要請其中的(N-K)位同學(xué)出列,使得剩下的K位同學(xué)排成合唱隊(duì)形。 合唱隊(duì)形是指這樣的一種隊(duì)形:設(shè)K位同學(xué)從左到右依次編號為1,2…,K,他們的身高分別為T1,T2,…,TK, 則他們的身高滿足T1 < T2 < ...< Ti > Ti+1 > … > TK (1 <= i <= K)。 你的任務(wù)是,已知所有N位同學(xué)的身高,計(jì)算最少需要幾位同學(xué)出列,可以使得剩下的同學(xué)排成合唱隊(duì)形。 Input 輸入包含若干個(gè)測試用例。 對于每個(gè)測試用例,輸入第一行是一個(gè)整數(shù)N(2<=N<=100),表示同學(xué)的總數(shù)。第二行有N個(gè)整數(shù),用空格分隔,第i個(gè)整數(shù)Ti(130<=Ti<=230)是第i位同學(xué)的身高(厘米)。當(dāng)輸入同學(xué)總數(shù)N為0時(shí)表示輸入結(jié)束。 Output 對于每個(gè)測試案例,輸出包括一行,這一行只包含一個(gè)整數(shù),就是最少需要幾位同學(xué)出列。 Sample Input 8 186 186 150 200 160 130 197 220 3 150 130 140 0 Sample Output 4 1
標(biāo)簽:
上傳時(shí)間: 2016-12-06
上傳用戶:jackgao
Good morning, dear teachers. I am very glad to be here for your interview. my name is xx.I am 21 years old. I come from Dafang, a small town of Guizhou province. My undergraduate period will be accomplished in East China Jiaotong University. I major in electrical engineering and automation. I am interesting in computer, especially in program design. I am a hard study student, especially in the things which I interesting in. I am a person with great perseverance. During the days I preparing for the postgraduate examination, I insist on study for more than 10 hours every day. Just owing to this, I could pass the first examination finally. I am also a person with great ambition.
標(biāo)簽: interview teachers morning Good
上傳時(shí)間: 2014-01-11
上傳用戶:釣鰲牧馬
function [U,center,result,w,obj_fcn]= fenlei(data) [data_n,in_n] = size(data) m= 2 % Exponent for U max_iter = 100 % Max. iteration min_impro =1e-5 % Min. improvement c=3 [center, U, obj_fcn] = fcm(data, c) for i=1:max_iter if F(U)>0.98 break else w_new=eye(in_n,in_n) center1=sum(center)/c a=center1(1)./center1 deta=center-center1(ones(c,1),:) w=sqrt(sum(deta.^2)).*a for j=1:in_n w_new(j,j)=w(j) end data1=data*w_new [center, U, obj_fcn] = fcm(data1, c) center=center./w(ones(c,1),:) obj_fcn=obj_fcn/sum(w.^2) end end display(i) result=zeros(1,data_n) U_=max(U) for i=1:data_n for j=1:c if U(j,i)==U_(i) result(i)=j continue end end end
標(biāo)簽: data function Exponent obj_fcn
上傳時(shí)間: 2013-12-18
上傳用戶:ynzfm
紀(jì)震,電子工業(yè)出版社 出版的《DSP系統(tǒng)入門與實(shí)踐》源程序,是DSP5000系列編程入門的好資料
標(biāo)簽:
上傳時(shí)間: 2014-11-18
上傳用戶:皇族傳媒
void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size ) { return } step++ board[i][j]=step if (step == Size*Size) { showboard() system("PAUSE") return } //DFS Knight(i-2,j-1) //left Knight(i-2,j+1) Knight(i+2,j-1) //right Knight(i+2,j+1) Knight(i-1,j-2) //up Knight(i+1,j-2) Knight(i+1,j+2) //down Knight(i-1,j+2) // board[i][j]=0 step-- }
標(biāo)簽: int Knight printf board
上傳時(shí)間: 2014-01-17
上傳用戶:cxl274287265
管腳號 管腳名稱 LEVER 管腳功能描述 1 VSS 0V 電源地 2 VDD 5.0V 電源電壓 3 VEE 5.0V~(-13V) 液晶顯示器驅(qū)動(dòng)電壓 4 D/I H/L D/I=“H”,表示DB7~DB0為顯示數(shù)據(jù) D/I=“L”,表示DB7~DB0為顯示指令數(shù)據(jù) 5 R/W H/L R/W=“H”,E=“H”,數(shù)據(jù)被讀到DB7~DB0 R/W=“L”,E=“H→L”, DB7~DB0的數(shù)據(jù)被寫到IR或DR 6 E H/L 使能信號:R/W=“L”,E信號下降沿鎖存DB7~DB0 R/W=“H”,E=“H” DRAM數(shù)據(jù)讀到DB7~DB0 7 DB0 H/L 數(shù)據(jù)線 8 DB1 H/L 數(shù)據(jù)線 9 DB2 H/L 數(shù)據(jù)線 10 DB3 H/L 數(shù)據(jù)線 11 DB4 H/L 數(shù)據(jù)線 12 DB5 H/L 數(shù)據(jù)線 13 DB6 H/L 數(shù)據(jù)線 14 DB7 H/L 數(shù)據(jù)線 15 CS1 L (19264A) 選擇IC1,即(左)64列 16 RESET L 復(fù)位控制信號,RST=0有效 17 CS2 L (19264A) 選擇IC2,即(中)64列 18 CS3 L (19264A) 選擇IC3,即(右)64列 19 V0 -9V Negative Voltage for LCD driving 20 LED+ +5.0V The LED supply
上傳時(shí)間: 2014-01-01
上傳用戶:541657925
用C語言編寫的DSP程序,實(shí)現(xiàn)離散余弦變換 (DCT),在CCS下運(yùn)行~
上傳時(shí)間: 2017-05-06
上傳用戶:kr770906
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1