CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 一元函数

搜索资源列表

  1. C++程序设计语言实验一

    1下载:
  2. 实验一:C++编程入门 1. 设计一个程序,其中实现两个函数,分别要求: 1. 解一元二次方程 求解一元二次方程Ax²+Bx+C=0的根。用户输入A、B、C的值,输出方程根x1和x2。(使用引用) 2. 求三角形面积 输入三角形的三边长a、b、c(边长可以是小数),求三角形面积area,并输出。如果输入的三边构不成三角形,应给出“data error”的信息提示。注:根据“海伦”公式,area*area=p(p-a)(p-b)(p-c),其中p=(a+b+c)/2。 2. 设计一
  3. 所属分类:其他小程序

  1. shujujiegou

    0下载:
  2. 功能:完成两个n元多项式作乘法,给出明确的等式形式。 分步实施:1). 初步完成总体设计,搭好框架,确定人机对话的界面,确定函数个数; 2). 完成最低要求:建立一个文件,实现两个一元二次多项式作乘法。 3). 进一步要求:实现三元二次多项式的乘法。 -Function: the completion of two n-polynomial for multiplication, given the form of a clear identity. Step by step:
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:264.64kb
    • 提供者:杨尘
  1. example3

    0下载:
  2. 分别建立命令文件和函数文件 转换想x,y的值 求一元二次方程的根-The establishment of a command file and function file Conversion to x, y values Seeking the root of one dollar a quadratic equation
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:2.75kb
    • 提供者:nianhua
  1. mathematicalprogrammingcode

    0下载:
  2. 它包含了数学规划、线性规划、一元函数极值、多元函数极值拟牛顿法、多元函数极值、单纯形搜索法、非线性规划的代码-It contains matlab code of mathematical programming, linear programming, unary function, extreme value, multi-function extremum quasi-Newton method, multi-function extremum, simplex method, nonli
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:22.1kb
    • 提供者:温娟
  1. Datafitting

    1下载:
  2. 它包含了数据拟合、interp1 - 一元函数插值、 spline - 样条插值、polyfit - 多项式插值或拟合、curvefit - 曲线拟合、caspe - 各种边界条件的样条插值、casps - 样条拟合(没有)、interp2 - 二元函数插值、griddata - 不规则数据的二元函数插值、interp - 不单调节点插值和lagrange - 拉格朗日插值法的代码.-It contains code of data fitting, interp1- unary functio
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:20.07kb
    • 提供者:温娟
  1. solot_eq3

    0下载:
  2. 可以解一元三次方程的实数解,主函数中first.reset_co(1,2,3,4) 中的1,2,3,4表示输入一元三次方程的系数,用户可以任意更改 -Possible solutions to the cubic equation of Real Solutions
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:721.54kb
    • 提供者:张庆
  1. Cyuyan

    0下载:
  2. 对字符串进行把个数多于两位的挑选出来,解一元二次方程,利用函数重载在MFC中画图,用三种方法排序,木材抛光问题-On the string to the selected number of more than two, for solving a quadratic equation, using function overloading in the drawing in MFC, sorted in three ways, wood polish problems
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:8kb
    • 提供者:杨阳
  1. 084221033

    0下载:
  2. 一元多项式计数器 基本要求: (1)输入并建立多项式; (2)输出多项式:n, c1, e1, c2, e2, …cn , en, 其中,n是多项式项数,ci和ei分别是第 i 项的系数和指数,序列按指数降序排列。 (3)两个多项式相加、相减、相乘、相除; (4)计算多项式在x处的值; (5)求多项式的导函数。 -Unary polynomial counter basic requirements: (1) input and the establishme
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:3.18kb
    • 提供者:yy
  1. Homework1

    0下载:
  2. 多项式加法与乘法 可以进行一元函数的多项式加法与乘法-Polynomial addition and multiplication
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:1.43kb
    • 提供者:luoweimeng
  1. hanshu

    0下载:
  2. 求一元二次方程的根的函数,判断输入整数是否是素数-Seek the root of a quadratic function, determine whether the input integer is prime
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:697byte
    • 提供者:olivia
  1. duoxiangshi

    0下载:
  2. 题目说明:   要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE * h1, NODE * h2, NODE * h3 )。 输入:   输入数据为两行,分别表示两个一元多项式。每个一元多项式以指数递增的顺序输入多项式各项的系数(整数)、指数(整数)。   例如:1+2x+x2表示为:<1,0>,<2,1>,<1,2>, 输出:   以指数递
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-09
    • 文件大小:1kb
    • 提供者:
  1. yiyuanduoxiangshixiangcheng

    0下载:
  2. 要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE * h1, NODE * h2, NODE * h3 )。-要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE* h1, NODE* h2, NODE* h3 )。
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-26
    • 文件大小:945byte
    • 提供者:yilia
  1. FunctionCalc

    1下载:
  2. 自己做得一个基于VC6.0的系数计算器,包含一元二次方程的系数的计算和最小二乘法函数方程系数的计算,方便在写测试程序时计算各种曲线方程的系数-I was doing based on the coefficient calculator VC6.0 contains a quadratic equation calculation of the coefficient functions and the method of least squares equation coefficients
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-18
    • 文件大小:1.8mb
    • 提供者:123
  1. equantion

    0下载:
  2. 解方程的lisp函数: 解一元一次方程 解二元一次方程组 解一元二次方程 解线性方程组 行列式求值-Solving equations lisp function: Solving a linear equation solution to the dual linear equation solution to a quadratic equation for solving linear equations determinant evaluated
  3. 所属分类:Other systems

    • 发布日期:2017-11-05
    • 文件大小:1004byte
    • 提供者:lmy
  1. nihe

    0下载:
  2. 该代码是一个多项式拟合函数,可实现1~3次一元多项式拟合。-The code is a polynomial function, enabling one to three times a polynomial fitting.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2.21kb
    • 提供者:刘明
  1. sga

    0下载:
  2. 利用遗传算法解决实际问题,用于平面度的测量以及具体的一元函数优化求极值,适用于matlab-using matlab to make a program to solve the ga function
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1.19kb
    • 提供者:云峰
  1. MATLAB-ga

    0下载:
  2. matlab经典遗传算法GGA求解一元函数优化问题-Matlab genetic algorithm optimization of one element function
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1.02kb
    • 提供者:薄荷
  1. Equation-Root

    0下载:
  2. 方程求根 inv - 逆矩阵 roots - 多项式的根 fzero - 一元函数零点 fsolve - 非线性方程组 solve - 符号方程解 *newton - 牛顿迭代法解非线性方程- Equation Root inv- Inverse Matrix roots- roots of the polynomial fzero- One Function Zero fsolve- nonlinear equations solve- Equ
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-30
    • 文件大小:9.62kb
    • 提供者:lxc
  1. Data-fitting

    0下载:
  2. 数据拟合 interp1 - 一元函数插值 spline - 样条插值 polyfit - 多项式插值或拟合 curvefit - 曲线拟合 caspe - 各种边界条件的样条插值 casps - 样条拟合(没有) interp2 - 二元函数插值 griddata - 不规则数据的二元函数插值 *interp - 不单调节点插值 *lagrange - 拉格朗日插值法- Data fitting interp1- one yu
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-30
    • 文件大小:20.5kb
    • 提供者:lxc
  1. Mathematical-Programming

    0下载:
  2. 数学规划 lp - 线性规划 linprog - 线性规划(在MATLAB5.3使用) fmin - 一元函数极值 fminu - 多元函数极值拟牛顿法 fmins - 多元函数极值单纯形搜索法 constr - 非线性规划 fmincon - 非线性规划(在MATLAB5.3使用)- Mathematical Programming lp- Linear Programming linprog- linear programming (in M
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-30
    • 文件大小:22.49kb
    • 提供者:lxc
« 12 »
搜珍网 www.dssz.com