登录
首页 » matlab » Geographic-data-analysis-Matlab

Geographic-data-analysis-Matlab

于 2014-01-08 发布 文件大小:43KB
0 293
下载积分: 1 下载次数: 25

代码说明:

  代码基于Matlab软件,讲述了大量数学方法的应用思路和过程。内容涉及回归分析、主成分分析、因子分析、聚类分析、判别分析、时(空)间序列分析、Markov链、R/S分析、线性规划、层次分析法以及人工神经网络建模等方法。通过模仿本书讲授的计算过程,读者可以加深对有关数学方法的认识和理解,并且掌握很多Matlab的应用技巧。代码规范,可研究价值高。  (Code based on the Matlab software, tells the story of a large number of mathematics method of thinking and process applications.Content in regression analysis, principal component analysis, factor analysis, cluster analysis, discriminant analysis, the (empty) sequence analysis, Markov chains, R/S analysis, linear programming, analytic hierarchy process (ahp) method and artificial neural network modeling, etc.By imitating the calculation process of this book teaches, readers can deepen the understanding and the understanding to the related mathematical methods, and master a lot of Matlab application skills.Code standards, it is with high research value.)

文件列表:

Matlab代码
..........\01 一元线性回归分.m,6828,2011-11-27
..........\02a 多元线性回归分析.m,8129,2010-10-21
..........\02b 逐步回归分析.m,2787,2011-11-27
..........\03 非线性回归.m,49187,2010-10-29
..........\04 主成分分析.m,9595,2013-08-14
..........\05 因子分析.m,4044,2011-09-15
..........\06 层次聚类分析.m,11649,2010-10-24
..........\07 判别分析.m,9769,2011-11-29
..........\08 自相关分析.m,13113,2011-11-29
..........\09 自回归分析.m,16907,2011-09-17
..........\10 谱分析.m,22920,2010-10-23
..........\11 小波分析.m,12378,2012-03-02
..........\12 RS分析.m,3160,2011-09-20
..........\13 Markov链.m,4259,2011-12-03
..........\14 线性规划2010-10-19.m,9708,2012-06-18
..........\15 AHP法1010-10-12.m,5720,2012-06-17
..........\16 人工神经网络.m,34023,2011-12-04
..........\保存在work中的数据
..........\..................\cities2003.m,1305,2010-10-16
..........\..................\Population.m,402,2011-09-15
..........\..................\regions2004.m,2341,2010-11-29
..........\..................\sunspot.m,823,2012-02-29
..........\..................\UNDP2.m,354,2010-11-05
..........\..................\UNDP3.m,1351,2010-11-05

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

发表评论

0 个回复

  • ChapterVIIofthematlabgraphics
    这是一份MATLAB基础课件,由于我也是初学者,这部课件讲的很浅显,但比较适合初学者对MATLAB所有功能的一个初步了解内容包括涵数值数组及其运算, M文件和面向对象编成, 字符串数组, 符号变量, matlab 绘图 及 Simulnk动态仿真。以及两个基本浅显的程序题。此为第 7章。(This is a basic MATLAB courseware, because I am also a beginner, this software is very simple-speaking, but more suitable for beginners of all the features of MATLAB, a preliminary understanding of the content including the Han and its numerical array computing, M documents and for object into string array, variable symbols, matlab graphics and dynamic simulation Simulnk. As well as the two basic procedures for simple questions. This is Chapter 7.)
    2009-03-22 09:06:37下载
    积分:1
  • SA
    说明:  利用MATLAB实现模拟退火算法计算商旅问题(Use MATLAB to achieve simulated annealing algorithm Business Problems)
    2014-11-01 13:31:38下载
    积分:1
  • prml-web-sol
    经典的国外bitshop关于机器学习和模式识别教程,全是英文,内容详细(Classic foreign bitshop tutorial on machine learning and pattern recognition, all in English, detailed)
    2010-06-12 13:28:58下载
    积分:1
  • cordic
    cordic算法实现特征值分解,非常实用,代码可以作为参考(cordic eigenvalue decomposition algorithm, very practical, code can be used as a reference)
    2013-10-30 07:25:58下载
    积分:1
  • matlab
    基于matlab的电力系统潮流计算 程序(Based on matlab Power Flow Calculation Program)
    2013-05-12 16:21:03下载
    积分:1
  • CFAR
    CFAR阈值 -逆高斯分布的CFAR检测阈值,计算公式带积分,考虑能否用高贵软件小目标CFAR公式阈值代替??利用查表法!(CFAR threshold- inverse Gaussian distribution of CFAR detection threshold, the formula with integral, consider whether the use of noble software small target CFAR formula threshold instead? ?? Use look-up table method!)
    2021-04-10 14:38:59下载
    积分:1
  • 最速下降法
    说明:  最速下降法是迭代法的一种,可以用于求解最小二乘问题(线性和非线性都可以)。在求解机器学习算法的模型参数,即无约束优化问题时,梯度下降(Gradient Descent)是最常采用的方法之一,另一种常用的方法是最小二乘法。在求解损失函数的最小值时,可以通过梯度下降法来一步步的迭代求解,得到最小化的损失函数和模型参数值。反过来,如果我们需要求解损失函数的最大值,这时就需要用梯度上升法来迭代了。在机器学习中,基于基本的梯度下降法发展了两种梯度下降方法,分别为随机梯度下降法和批量梯度下降法。(The steepest descent method is a kind of iterative method, which can be used to solve the least squares problem (both linear and nonlinear). In solving the model parameters of machine learning algorithm, that is, unconstrained optimization, gradient descent is one of the most commonly used methods, and the other is the least square method. When solving the minimum value of loss function, the gradient descent method can be used step by step to get the minimum value of loss function and model parameters. Conversely, if we need to solve the maximum value of the loss function, then we need to use the gradient rise method to iterate. In machine learning, two kinds of ladders are developed based on the basic gradient descent method)
    2019-11-24 13:06:03下载
    积分:1
  • DAB_test
    DAB发送端仿真,包括编码,删余,QPSK映射,频率交织,差分调制,循环嵌缀,加NULL、PRS,IFFT,信道(DAB sending end simulation, including coding, cut more than, QPSK mapping, interwoven frequency, differential modulation, the cycle is made up of inlay, plus NULL, PRS, IFFT, channel)
    2008-03-01 10:43:02下载
    积分:1
  • region_grow1
    区域增长法的Matlab实现,区域增长法的Matlab实现(Matlab to achieve regional growth law)
    2011-04-28 15:42:56下载
    积分:1
  • Coding_footprintf
    fingerprint regconize Fingerprint-Project
    2014-09-05 01:01:00下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载