登录
首页 » matlab » jisuanqi

jisuanqi

于 2014-09-19 发布 文件大小:131KB
0 222
下载积分: 1 下载次数: 7

代码说明:

  用MATLAB编写的贷款利率计算器,可以修改每年的利率来应用到实际的应用中(Using MATLAB loan rate calculator, you can modify the annual interest rate to be applied to practical applications)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • youxianchafen
    一个有限差分法的应用文章,包括MATLAB程序,(The application of a finite difference method the article, including the MATLAB program,)
    2010-10-29 15:23:10下载
    积分:1
  • CC++bishi
    理论知识是用来指导具体实践的。本文在深刻理解通信系统理论的基础上利用 MATLAB 强大的仿真功能,设计了许多具体的通信系统仿真模型。在仿真模型设计过程中,本文对模型设计的目的、具体的结构组成、仿真流程以及仿真结果都给出了具体详实的分析和说明。(Theoretical knowledge is used to guide the specific practice. In this paper, a deep understanding of the theory of communication systems using MATLAB based on the powerful simulation function, the design of a number of specific communication system simulation model. In the simulation model of the design process, this article is designed on the model, the specific structural components, simulation and flow simulation results are given specific and detailed analysis and description.)
    2008-06-02 15:06:57下载
    积分:1
  • shenjingwangluo
    T=[1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1] 输入向量的最大值和最小值 threshold=[0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1] net=newff(threshold,[31 3],{ tansig , logsig }, trainlm ) 训练次数为1000,训练目标为0.01,学习速率为0.1 net.trainParam.epochs=1000 net.trainParam.goal=0.01 LP.lr=0.1 net = train(net,P,T) 测试数据,和训练数据不一致 P_test=[0.2101 0.0950 0.1298 0.1359 0.2601 0.1001 0.0753 0.0890 0.0389 0.1451 0.0128 0.1590 0.2452 0.0512 0.1319 0.2593 0.1800 0.0711 0.2801 0.1501 0.1298 0.1001 0.1891 0.2531 0.0875 0.0058 0.1803 0.0992 0.0802 0.1002 (T = [1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1] ' of the maximum and minimum input vector threshold = [0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1] net = newff (threshold, [31 3], {' tansig' , ' logsig' }, ' trainlm' ) training times for the 1000 target of 0.01 training, learning rate of 0.1 net.trainParam.epochs = 1000 net. trainParam.goal = 0.01 LP.lr = 0.1 net = train (net, P, T) test data, and training data inconsistencies P_test = [0.2101 0.0950 0.1298 0.1359 0.2601 0.1001 0.0753 0.0890 0.0389 0.1451 0.0128 0.1590 0.2452 0.0512 0.1319 0.2593 0.1800 0.0711 0.2801 0.1501 0.1298 0.1001 0.1891 0.2531 0.0875 0.0058 0.1803 0.0992 0.0802 0.1002 )
    2011-05-21 16:47:44下载
    积分:1
  • MATLAB7.0Tutorial
    MATLAB7.0基础教程_清华大学,很好的教材,适用于0基础的人(Tutorial for MATLAB7.0)
    2013-11-26 09:10:26下载
    积分:1
  • Recursive_integer_division
    递归法求解整数划分。 整数划分,是指把一个正整数n写成如下形式: n=m1+m2+…+mi (其中mi为正整数,并且1 <= mi <= n),则{m1,m2,...,mi}为n的一个划分。 如果{m1,m2,...,mi}中的最大值不超过m,即max(m1,m2,...,mi)<=m,则称它属于n的一个m划分。这里我们记n的m划分的个数为f(n,m) (Recursive method integer division. Integer division, refers to a positive integer n written as follows: n = m1+m2+ ...+mi (where mi is a positive integer, and 1 < = mi < = n), then {m1, m2, ..., mi} is a division of n. If {m1, m2, ..., mi} does not exceed the maximum value of m, i.e., max (m1, m2, ..., mi) < = m, m n is said that it belongs to a division. Where m is the number of division n our mind is f (n, m) )
    2014-02-06 14:21:38下载
    积分:1
  • xiti91
    输入8位电话号码,自动为每位数字生成对应的DTMF信号,送出双频声音(Enter the eight telephone number, automatically generates the corresponding DTMF signal for each digit, dual-frequency sounds sent)
    2014-12-02 21:59:31下载
    积分:1
  • yearchixufuhe
    计算年持续负荷曲线matlab程序 通过读取excel文件(Calculate the continuous load curve matlab program by reading the excel file)
    2012-08-09 14:13:14下载
    积分:1
  • interpcontourlet(1)
    MATLAB CODE FOR INTERPOLATION
    2013-09-13 19:01:59下载
    积分:1
  • FELICS
    In computer science and information theory, data compression, source coding,[1] or bit-rate reduction involves encoding information using fewer bits than the original representation. Compression can be either be lossy or lossless. Lossless compression reduces bits by identifying and eliminating statistical redundancy. No information is lost in lossless compression. Lossy compression reduces bits by identifying marginally important information and removing it. The process of reducing the size of a data file is popularly referred to as data compression, although its formal name is source coding (coding done at the source of the data, before it is stored or transmitted).
    2012-09-26 18:06:47下载
    积分:1
  • dipum_images_ch05
    dipum_images_ch05 matlab 编程实例(dipum_images_ch05 matlab Programming Example)
    2009-09-12 11:14:10下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载