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

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

eng<b>IN</b>eer<b>IN</b>g

  • it is a verilog code written for FIFO in modelsim simulator and it will synthesize in xinlix ise 8

    it is a verilog code written for FIFO in modelsim simulator and it will synthesize in xinlix ise 8.2i.i have tested it om my kit.[i mae my own kit for spartan2 device].you can use this code in any DSP project in which data entry is required.

    標簽: synthesize simulator modelsim verilog

    上傳時間: 2014-06-26

    上傳用戶:zhuyibin

  • list is a data dtructure. this is a data structure type implemantation and it is implemented in C pr

    list is a data dtructure. this is a data structure type implemantation and it is implemented in C prgramming language. General header contains pointer to object so list.c in c is implemented in generic way.

    標簽: data implemantation implemented dtructure

    上傳時間: 2017-03-27

    上傳用戶:LIKE

  • 一道程序編譯順序的考題

    一道程序編譯順序的考題,涉及到函數(shù)調(diào)用的先后順序及運算符號的優(yōu)先級等問題。下面我展開給你講。 C的程序編譯總是從main函數(shù)開始的,這道題的重點在“fun((int)fun(a+c,b),a-c)) ”語句。 系統(tǒng)首先要確定最外層 fun()函數(shù)的實參,第一個參數(shù)的確定需要遞歸調(diào)用fun()函數(shù)(不妨稱其為內(nèi)層函數(shù))。內(nèi)層函數(shù)的兩個參數(shù)分別為x=a+b=2+8=10、y=b=5,執(zhí)行函數(shù)體x+y=10+5=15,于是得外層函數(shù)的參數(shù)x=15。其另一個參數(shù)y=a-c=2-b=-6,再次執(zhí)行函數(shù)體,得最終返回值x+y=15+(-6)=9。

    標簽: 程序編譯

    上傳時間: 2014-12-03

    上傳用戶:徐孺

  • 找一個最小的自然數(shù)

    找一個最小的自然數(shù),使它等于不同的兩組三個自然數(shù)的三次冪之和,即找最小的x,使得:x=a*a*a+b*b*b+c*c*c = d*d*d+e*e*e+f*f*f 其中,a,b,c,d,e,f都是自然數(shù),a<=b<=c, d<=e<=f [a,b,c]!=[d,e,f] 進一步,是否還存在另外一個自然數(shù)滿足上述條件,可能的話請輸出其結(jié)果

    標簽:

    上傳時間: 2017-05-16

    上傳用戶:vodssv

  • 建立兩個任務(wù)AB

    建立兩個任務(wù)AB,A可以掛起B(yǎng),同時也可以恢復(fù)B

    標簽:

    上傳時間: 2017-06-02

    上傳用戶:han_zh

  • Tic tac toe is (exactly what re your thinking) and it s the first game I made. Made it in one whole

    Tic tac toe is (exactly what re your thinking) and it s the first game I made. Made it in one whole day in Turbo C. It uses primitive graphics drawing and also demonstrates how to output an image. Written in C, also uses a library I got from the net (included) for image output.

    標簽: thinking exactly first whole

    上傳時間: 2017-08-13

    上傳用戶:xhz1993

  • wavelet transform for the prediction of the colorant in food product, wavelet transform in chemestry

    wavelet transform for the prediction of the colorant in food product, wavelet transform in chemestry, theshold,CWT in electrochemestry signal

    標簽: transform wavelet prediction chemestry

    上傳時間: 2017-08-24

    上傳用戶:xg262122

  • 學(xué)生管理啊

    #include <iostream.h> #include <string.h> #include <iomanip.h> #include "Stud.h" Stud::Stud(){} char *Stud::getno()              //獲取學(xué)號 { return no; } char *Stud::getname()            //獲取姓名 { return name; } char *Stud::getsex()             //獲取性別 { return sex; } char *Stud::getminzu()           //獲取民族 { return minzu; } char *Stud::getaddress()         //獲取出生地 { return address; } char *Stud::getbirth()           //獲取出生年月 { return birth; } int Stud::gettag()               //獲取姓名 { return tag; } void Stud::changeno(char n[])                 //設(shè)置學(xué)號 { strcpy(no,n); } void Stud::changename(char na[])              //設(shè)置姓名 { strcpy(name,na); } void Stud::changesex(char s[])                //設(shè)置性別 { strcpy(sex,s); } void Stud::changeminzu(char m[])               //設(shè)置民族 { strcpy(minzu,m); } void Stud::changeaddress(char a[])             //設(shè)置出生地 { strcpy(address,a); } void Stud::changebirth(char b[])               //設(shè)置出生年月 { strcpy(birth,b); } void Stud::addstudent(char *rn,char *rna)      //增加學(xué)生 {     strcpy(no,rn); strcpy(name,rna); } void Stud::addstudent(char *rn,char *rna,char *rs,char *rm,char *ra,char *rb)    //增加學(xué)生 { tag=0; strcpy(no,rn); strcpy(name,rna); strcpy(sex,rs); strcpy(minzu,rm); strcpy(address,ra); strcpy(birth,rb); } void Stud::delstud()                         //設(shè)置刪除標記 { tag=1; } void Stud::disp()                            //輸出學(xué)生信息 { cout<<setw(15)<<no<<setw(10)<<name<<setw(10)<<sex<<setw(10)<<minzu<<setw(10)<<address<<setw(10)<<birth<<endl; } void Stud::display()                         //輸出學(xué)生信息 {     cout<<setw(15)<<no<<setw(10)<<name; }

    標簽: 學(xué)生

    上傳時間: 2016-12-29

    上傳用戶:767483511

  • 數(shù)字圖像處理技術(shù) 圖像的基本運算

    1. 編寫M程序,利用圖像點運算的線性函數(shù):G = aF + b, 給出a、b的不同值,改變圖像的對比度、亮度以及圖像反相的效果。 2.  利用“二值圖像與原圖像做點乘,得到子圖像”的原理.,編寫M程序,構(gòu)造特殊的二值圖像,最終得到需要的子圖像。 3.  編寫M程序,實現(xiàn)兩個大小不同圖像的疊加。 4,(提高題)編寫M程序,實現(xiàn)圖像的動態(tài)平移。

    標簽: 數(shù)字圖像 處理技術(shù) 圖像 運算

    上傳時間: 2017-05-10

    上傳用戶:mouroutao

  • 道理特分解法

    #include "iostream" using namespace std; class Matrix { private: double** A; //矩陣A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); void Disp(); }; Matrix::Matrix(int x) { size=x; //為向量b分配空間并初始化為0 b=new double [x]; for(int j=0;j<x;j++) b[j]=0; //為向量A分配空間并初始化為0 A=new double* [x]; for(int i=0;i<x;i++) A[i]=new double [x]; for(int m=0;m<x;m++) for(int n=0;n<x;n++) A[m][n]=0; } Matrix::~Matrix() { cout<<"正在析構(gòu)中~~~~"<<endl; delete b; for(int i=0;i<size;i++) delete A[i]; delete A; } void Matrix::Disp() { for(int i=0;i<size;i++) { for(int j=0;j<size;j++) cout<<A[i][j]<<" "; cout<<endl; } } void Matrix::Input() { cout<<"請輸入A:"<<endl; for(int i=0;i<size;i++) for(int j=0;j<size;j++){ cout<<"第"<<i+1<<"行"<<"第"<<j+1<<"列:"<<endl; cin>>A[i][j]; } cout<<"請輸入b:"<<endl; for(int j=0;j<size;j++){ cout<<"第"<<j+1<<"個:"<<endl; cin>>b[j]; } } double* Dooli(Matrix& A) { double *Xn=new double [A.size]; Matrix L(A.size),U(A.size); //分別求得U,L的第一行與第一列 for(int i=0;i<A.size;i++) U.A[0][i]=A.A[0][i]; for(int j=1;j<A.size;j++) L.A[j][0]=A.A[j][0]/U.A[0][0]; //分別求得U,L的第r行,第r列 double temp1=0,temp2=0; for(int r=1;r<A.size;r++){ //U for(int i=r;i<A.size;i++){ for(int k=0;k<r-1;k++) temp1=temp1+L.A[r][k]*U.A[k][i]; U.A[r][i]=A.A[r][i]-temp1; } //L for(int i=r+1;i<A.size;i++){ for(int k=0;k<r-1;k++) temp2=temp2+L.A[i][k]*U.A[k][r]; L.A[i][r]=(A.A[i][r]-temp2)/U.A[r][r]; } } cout<<"計算U得:"<<endl; U.Disp(); cout<<"計算L的:"<<endl; L.Disp(); double *Y=new double [A.size]; Y[0]=A.b[0]; for(int i=1;i<A.size;i++ ){ double temp3=0; for(int k=0;k<i-1;k++) temp3=temp3+L.A[i][k]*Y[k]; Y[i]=A.b[i]-temp3; } Xn[A.size-1]=Y[A.size-1]/U.A[A.size-1][A.size-1]; for(int i=A.size-1;i>=0;i--){ double temp4=0; for(int k=i+1;k<A.size;k++) temp4=temp4+U.A[i][k]*Xn[k]; Xn[i]=(Y[i]-temp4)/U.A[i][i]; } return Xn; } int main() { Matrix B(4); B.Input(); double *X; X=Dooli(B); cout<<"~~~~解得:"<<endl; for(int i=0;i<B.size;i++) cout<<"X["<<i<<"]:"<<X[i]<<" "; cout<<endl<<"呵呵呵呵呵"; return 0; } 

    標簽: 道理特分解法

    上傳時間: 2018-05-20

    上傳用戶:Aa123456789

主站蜘蛛池模板: 云和县| 秭归县| 鸡泽县| 新和县| 哈巴河县| 开平市| 忻州市| 闻喜县| 新田县| 铅山县| 安阳市| 科技| 白城市| 庆云县| 休宁县| 辽宁省| 保亭| 绥芬河市| 兰溪市| 清新县| 沁阳市| 黔南| 临西县| 勐海县| 出国| 永修县| 集贤县| 黔南| 土默特右旗| 海宁市| 措勤县| 茂名市| 南平市| 寻乌县| 吉水县| 南充市| 冀州市| 衡南县| 临夏市| 太保市| 苍溪县|