搜索资源列表
lglrchzh
- 用JAVA写的数值计算方法中的拉格朗日插值算法的程序,主函数是d2r1,运行d2r1就可以了-written with Java numerical calculation method of Lagrange interpolation algorithm for the procedure, the main function is d2r1. Operation d2r1 can
sanjiao
- 数值方法实验:自己用java写的一个数值方法三角消元程序-Numerical Methods: triangular elimination
LinkedList
- //本代码是用Java实现链表的几个基本功能,分别是:创建链表(自己需要输入创建节点的个数,之后输入各个节点的数值)、 //插入节点、删除节点(分为删除链表中某个数值方法和删除链表中第几位置的节点方法)、输出链表、将链表转化为数组、 //将链表进行排序(用的是先将链表转化为数组,之后对数组进行冒泡排序)、还有输出链表的长度(初学者仅供参考)-Complete the single linked list with Java. The functions are create,
commons-math-2.0-src(1)
- java数值计算方法-...........................................
ASPNET
- 棒图有时又称为"Bar"图。在我的上一篇文章《在ASP.NET实现数据图表》中已经介绍了在浏览器看到的图表,一般都是图片文件。那么在ASP.NET中是否也可以生成这些图表?答案是肯定的,因为在ASP.NET中拥有了一个新功能--绘图功能,通过此功能就能够按照要实现的图表的模样来绘制,最后在客户端的浏览器中形成一个图片,从而显示出图表来。 本文就在上一篇文章的基础上,进一步介绍在ASP.NET页面中实现Bar图的具体方法。希望本篇文章不仅能够让您领会到ASP.NET中强大的绘图功能
java2
- 编写程序计算三门课的平均成绩,要求应用程序分别用Java语言三种不同的循环语句实现,每门课的成绩用Math类的random()方法 随机产生(random()产生的数值在0和1之间),成绩范围为40~100。 -Write a program grade point average calculation of three lessons to require the application were used Java language in three different loop re
BinarySearch
- 基于Java的二分查找法,是数值计算方法实验用的代码。-Java-based binary search method, numerical method is experimental code.
ChordIntercept
- 基于Java的迭代法,是数值计算方法的实验题。-Java-based iterative method is a numerical calculation of the experimental problems.
Iteration
- 基于Java的迭代法,是数值计算方法的实验题。-Java-based iterative method is a numerical calculation of the experimental problems.
Newton
- 基于Java的牛顿法,是数值计算方法的实验题。-Java-based Newton method is a numerical calculation of the experimental problems.
Gaussian
- 基于Java的高斯消元法,是数值计算方法的实验题。-Java-based Gaussian elimination method is the numerical calculation of the experimental problems.
Exercise6
- 本程序用java编写了数值分析中的一些代码,可以进行一些龙贝格方法和科斯塔方法的数值计算-This procedure is numerically analyzed using java prepared some of the code, you can make some Romberg method and the method of numerical calculation Costa
Guess
- 数值分析里面的高斯方法,用来求解方程组的解-Which the Gauss numerical methods for solving equations
bignumber
- Java中的简单浮点数类型float和double不能够进行精确的运算,只能用来做科学计算或者是工程计算。 不光是Java,在其它很多编程语言中也有这样的问题。在大多数情况下,计算的结果是准确的, 但是多试几次(可以做一个循环)就可以试出类似上面的错误。 这个问题相当严重,如果你有9.999999999999元,你的计算机是不会认为你可以购买10元的商品的。 为了解决Java基本数据类型在运算时会出现的溢出和计算不精确的问题。 Java 提供了两个类BigInteger和Bi
Interpolationwork
- 数值计算中的函数插值方法,拉格朗日插值法、分段插值法,并绘出图像,-Numerical calculation method of function interpolation, Lagrange interpolation, piecewise interpolation method, and draw the image,
lianxi
- 一个测试程序,通过post方法传递参数,用getParameterValues()方法获得该参数的所有参数值。-A test program to pass parameters through the post method, with getParameterValues () method to get the argument values of all parameters.
Finite-Element-Method-
- 有限单元法对于解决许多工程问题都很实用,很好的数值方法-Finite element method to solve many problems are very practical engineering, very good numerical method
count
- 编写Java 代码实现一个计数器类Counter,其中包含: 域counterValue 用来保存计数器的当前数值; 方法increment() 计数器加1; 方法decrement() 计数器减1; 方法reset() 清零; 思考:这个类应该定义几个构造函数?为什么? 利用该计数器类,编写一测试类,用以管理会议室投影仪的出借情况。每新购入一台投影仪或收回一台投影仪,计数器加1;每淘汰一台投影仪或借出一台投影仪,计数器减 1。-Write Java cod
shuzhifenxi
- 北航数值分析大作业第三题,数值积分,三种方法-The Beihang value analysis big job title, numerical integration, three methods
6
- 声明一个Average接口,其中约定求平均值的方法;声明多个类实现 Average接口分别给出求平均值的方法实现。例如,在一组数值中,一种算法是全部数值相加后求平均值,另一种算法是,去掉一个最高分和一个最低分,再将总分求平均等。原始成绩以字符串数组的形式在程序中指定: String s1[]={"67","80","88","82","90","91",} String s2[]={"67","80","88a","85","a","91"} 用Integer.parse