是“MATLAB混合编程与工程应用”一书的源码,该书高洁和孙新德编著 清华大学出版社出版 2008年5月 本书以MATLAB最新版本R2006a为蓝本,系统介绍了MATLAB混合编程的最新技术。全书共分11章,第1和第2章概述了 MATLAB混合编程的发展状况及基本方法,第3至10章分别介绍了几种典型的混合编程方法,包括使用MEX、MATLAB Engine、MATLAB ACTIVEX、Mideva、MATLAB Builder for .NET、MATLAB Web Server进行混合编程,以及MATLAB和Visual Basic、Excel等混合编程。第11章以数字水印技术为例介绍了MATLAB混合编程在工程中的典型应用。 本书按照混合编程常用方法进行编写,第3至10章的每章都为一个独立单元,读者可以任选其中一章或几章进行学习,每章重点阐述一种混合编程方法的实质和要点,实例描述贯穿始终。 本书不仅具有理论深度与广度,而且注重实用,实例丰富,特别是通过作者在数字水印方面的研究成果,提供了理论分析与应用案例。 本书可以作为高等院校计算机及信息相关专业的教材或参考书,也可供广大科技工作者参考。
上传时间: 2014-01-13
上传用户:
主要用到Java方面的FCK编辑器,displaytag标签,Ajax,Struts,Spring,Hibernate等各开源技术Struts1.1, Spring2.0, Hibernate3.0等相关环境, MySql数据库用此mysql-connector-java-3.1.10-bin.jar包,MySql数据库用5.0版本(为了支持视图).
标签: Hibernate Struts Spring displaytag
上传时间: 2013-12-19
上传用户:shus521
其乐达(Cheertek)LCD驱动芯片(CT675)的C51源代码,代码结构清晰,可读性强。该芯片整合了Video-Decoder, Scalar, T-con及LED Backlight Driver,可驱动3.5~10.2”模拟/数字屏;接收输入信号CVBS/S-video/RGB/YCbCr/CCIR656。目前该方案主要应用产品有Portable DVD/Portable TV/Car TV/数码相框/可视门铃等中小尺寸视频产品。
上传时间: 2013-12-12
上传用户:风之骄子
哥德巴赫猜想: 将一给定的偶数表示成两个质数之和被称之为此数的哥德巴赫分割。例如, 4 = 2 + 2 6 = 3 + 3 8 = 3 + 5 10 = 3 + 7 = 5 + 5 12 = 5 + 7 14 = 3 + 11 = 7 + 7 … 换句话说,哥德巴赫猜想主张每个大于等于 4 的偶数都是哥德巴赫数-可表示成两个质数之和的数。[1]另有对奇数的相似猜想,称之为李维猜想。
标签: 分割
上传时间: 2014-01-13
上传用户:xyipie
给定n个正整数,根据各位数字之和从小到大进行排序例如3 121 10 111 输出10 111 121
上传时间: 2017-06-29
上传用户:sjyy1001
(1)S2S1=00时,实现模3计数,触发器的状态一次0→1→2→0; (2)S2S1=01时,实现模5计数,触发器的状态一次0→1→2→3→4→0; (3) S2S1=10时,实现模7计数,触发器的状态一次0→1→2→3→4→5→6→0; (4) S2S1=11时,实现模7计数,触发器的状态一次0→1→2→3→4→5→6→7→0
标签: 00
上传时间: 2014-01-04
上传用户:kikye
题目描述 蛇行矩阵 Problem 蛇形矩阵是由1开始的自然数依次排列成的一个矩阵上三角形。 输入 Input 本题有多组数据,每组数据由一个正整数N组成。(N不大于100) 输出 Output 对于每一组数据,输出一个N行的蛇形矩阵。两组输出之间不要额外的空行。 矩阵三角中同一行的数字用一个空格分开。行尾不要多余的空格。 样例输入 5 样例输出 1 3 6 10 15 2 5 9 14 4 8 13 7 12 11
上传时间: 2016-02-29
上传用户:lwol2007
实验源代码 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("请输入矩阵第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可传递闭包关系矩阵是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元关系的可传递闭包\n"); void warshall(int,int); int k , n; printf("请输入矩阵的行数 i: "); scanf("%d",&k); 四川大学实验报告 printf("请输入矩阵的列数 j: "); scanf("%d",&n); warshall(k,n); }
上传时间: 2016-06-27
上传用户:梁雪文以
#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<<"正在析构中~~~~"<<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
Recent advances in wireless communication technologies have had a transforma- tive impact on society and have directly contributed to several economic and social aspects of daily life. Increasingly, the untethered exchange of information between devices is becoming a prime requirement for further progress, which is placing an ever greater demand on wireless bandwidth. The ultra wideband (UWB) system marks a major milestone in this progress. Since 2002, when the FCC allowed the unlicensed use of low-power, UWB radio signals in the 3.1–10.6GHz frequency band, there has been significant synergistic advance in this technology at the cir- cuits, architectural and communication systems levels. This technology allows for devices to communicate wirelessly, while coexisting with other users by ensuring that its power density is sufficiently low so that it is perceived as noise to other users.
上传时间: 2020-06-01
上传用户:shancjb