虫虫首页|资源下载|资源专辑|精品软件
登录|注册

Double

  • (1) 设计和编写代表矩阵的Matrix类。该类包括矩阵行列数变量int rows和int cols

    (1) 设计和编写代表矩阵的Matrix类。该类包括矩阵行列数变量int rows和int cols,矩阵数据数组Double data[][],构造方法Matrix()、Matrix(int rows,int cols)、Matrix(int rows,int cols,Double data[][]),获取某元素值的方法getData(int row,int col),设置某元素值的方法setData(int row,int col,Double value),计算两个矩阵的乘积的方法multiply(Matrix m)以及toString()等内容。

    标签: int Matrix cols rows

    上传时间: 2016-08-19

    上传用户:qiao8960

  • (1) 实现一个Point类

    (1) 实现一个Point类,该类包含表示坐标的两个int型变量x、y,构造方法Point()和Point(int xx, int yy),返回x值和y值的int getX()和int getY()方法,计算两点间距离的Double distance(Point)方法。其中计算平方根用Math.sqrt()方法。 (2) 实现一个Circle类,该类包含表示圆心的Point型变量center,表示半径的int radius变量,以及构造方法Circle()、Circle(int xx,int yy,int r)、Circle(Point c,int r),返回周长和面积的int perimeter()、Double area()方法,返回两个圆是否为同一个圆(返回0)、同心圆(返回1)、相交的圆(返回2)、分离的圆(返回3)、包含的圆(返回4)等关系的int relation(Circle c)等方法。PI值可以用Math.PI常量。 (3) 实现测试上述两个类的ClassTest类。该类在main方法中分别创建若干个Point对象和Circle对象,并调用相关方法,输出方法的返回值,验证其正确性。 (4) 将Point类、Circle类和主类的包名分别调整为p1、p2、p3,并重新运行,验证是否运行正确。

    标签: Point

    上传时间: 2014-11-25

    上传用户:cylnpy

  • ITU的关于图像主观质量评价的标准文档

    ITU的关于图像主观质量评价的标准文档,具体描述了Double-stimulus continuous quality-scale (DSCQS)的测试条件和方法

    标签: ITU 图像 质量 标准

    上传时间: 2014-01-18

    上传用户:dancnc

  • DevExpress.ExpressSideBar.v5.37.for.Delphi.BCB.Full.Source delphi和 bcb源码

    DevExpress.ExpressSideBar.v5.37.for.Delphi.BCB.Full.Source delphi和 bcb源码,能轻松实现outlook风格的侧边栏,效果很好,推荐! ExpressSideBar is a VCL implementation of the MS Outlook bar. Designed to be easy to use and built with a significant feature set. Just drop it on a form, Double click the control and in a few moments, you can customize the ExpressSideBar for your needs.

    标签: ExpressSideBar DevExpress Delphi Source

    上传时间: 2013-12-25

    上传用户:han_zh

  • This application includes a demo server and client program. You could write your own server launcher

    This application includes a demo server and client program. You could write your own server launcher and client application by using the SimpleScreenCaptureServer class and the SimpleRemoteScreenCaptureClient class. Usage: 1. Type the following command to launch the server program. java -jar SimpleCaptureScreenServerDemo.jar portnumber 2. Type the following command to launch the client program. It s a swing-based UI. java -jar RemoteScreenCaptureClientUI.jar 3. Select Run/Connect menu. Input your server address and port number. You could just Double-click on the RemoteScreenCaptureClientUI.jar to launch the client program if you are using Windows. This program is written just for fun. :lol: :lol: :lol:

    标签: server application includes launcher

    上传时间: 2016-10-06

    上传用户:kr770906

  • CppReference 对于c/c++的详尽说明 C/C++ Reference General C/C++ Pre-processor commands Operator P

    CppReference 对于c/c++的详尽说明 C/C++ Reference General C/C++ Pre-processor commands Operator Precedence Escape Sequences ASCII Chart Data Types Keywords Standard C Library Standard C I/O Standard C String & Character Standard C Math Standard C Time & Date Standard C Memory Other standard C functions All C Functions C++ C++ I/O C++ Strings C++ String Streams Miscellaneous C++ C++ Standard Template Library C++ Algorithms C++ Vectors C++ Double-Ended Queues C++ Lists C++ Priority Queues C++ Queues C++ Stacks C++ Sets C++ Multisets C++ Maps C++ Multimaps C++ Bitsets Iterators All C++ Functions

    标签: Pre-processor CppReference Reference Operator

    上传时间: 2016-10-26

    上传用户:aeiouetla

  • dwr.xml说明文档。配置文件init部分声明那些用于建立远程bean和在方法调用中转换bean的类.这部分是可选择性配置的,多数情况下可以不必使用它,如果你想定义一个新的creator或者conv

    dwr.xml说明文档。配置文件init部分声明那些用于建立远程bean和在方法调用中转换bean的类.这部分是可选择性配置的,多数情况下可以不必使用它,如果你想定义一个新的creator或者converter那么就必须在部分中声明,but do Double check on the ones that are currently available first.

    标签: bean creator conv init

    上传时间: 2014-02-14

    上传用户:偷心的海盗

  • pstmt = conn.prepareStatement("select ordernumber,datetime,price,dayofmoney from zujie where ordernu

    pstmt = conn.prepareStatement("select ordernumber,datetime,price,dayofmoney from zujie where ordernumber= "+ cdName + " ") rs=pstmt.executeQuery() if(rs!=null && rs.next()){ String datetime = rs.getString(2) java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat ("yyyy-MM-dd") Date date = new Date() String date1=formatter.format(date) ParsePosition pos = new ParsePosition(0) ParsePosition pos1 = new ParsePosition(0) Date dt1=formatter.parse(datetime,pos) Date dt2=formatter.parse(date1,pos1) Long l = (dt2.getTime()-dt1.getTime())/(3600*24*1000)+1 Double price = rs.getDouble(3) Double dayofmoney=rs.getDouble(4) Double dayofmoneybuy=dayofmoney*l Double otherMoney = price-dayofmoneybuy request.setAttribute("price", price) request.setAttribute("l", l) request.setAttribute("dayofmoney", dayofmoneybuy) request.setAttribute("otherMoney", otherMoney)

    标签: prepareStatement ordernumber dayofmoney datetime

    上传时间: 2013-12-13

    上传用户:zsjinju

  • // chebysheve outlier detection // this function is used to detect the abnormal value among a set o

    // chebysheve outlier detection // this function is used to detect the abnormal value among a set of data // input: // delta: a set of data // flag: discribe which data is already known as outlier // p: restrict level // output: // Double[] door : byyond which the data may be considered as a outlier // door[0]: the upperdoor // door[1]: the lowerdoor

    标签: chebysheve detection abnormal function

    上传时间: 2013-11-30

    上传用户:13517191407

  • DDR SDRAM控制器的VHDL源代码

    DDR SDRAM控制器的VHDL源代码,含详细设计文档。 The DDR, DCM, and SelectI/O™ features in the Virtex™ -II architecture make it the perfect choice for implementing a controller of a Double Data Rate (DDR) SDRAM. The Digital Clock Manager (DCM) provides the required Delay Locked Loop (DLL), Digital Phase Shift (DPS), and Digital Frequency Synthesis (DFS) functions. This application note describes a controller design for a 16-bit DDR SDRAM. The application note and reference design are enhanced versions of XAPP200 targeted to the Virtex-II series of FPGAs. At a clock rate of 133 MHz, 16-bit data changes at both clock edges. The reference design is fully synthesizable and achieves 133 MHz performance with automatic place and route tools.

    标签: SDRAM VHDL DDR 控制器

    上传时间: 2014-11-01

    上传用户:l254587896