Advertisement

Numerical Methods with MATLAB_Mathews_4th (English Text Version)

  •  5星
  •     浏览量: 0
  •     大小:None
  •      文件类型:None


简介:
《Numerical Methods with MATLAB》是由John Mathews编写的第四版教科书,以英语提供,旨在指导学生掌握数值方法及其在MATLAB中的实现。 Numerical Methods Using MATLAB by Mathews, 4th edition, is an English-language text version that is not a scanned copy. It covers numerical methods using Matlab and is the fourth edition of the book by Mathews.

全部评论 (0)

还没有任何评论哟~
客服
客服
  • Numerical Methods with MATLAB_Mathews_4th (English Text Version)
    优质
    《Numerical Methods with MATLAB》是由John Mathews编写的第四版教科书,以英语提供,旨在指导学生掌握数值方法及其在MATLAB中的实现。 Numerical Methods Using MATLAB by Mathews, 4th edition, is an English-language text version that is not a scanned copy. It covers numerical methods using Matlab and is the fourth edition of the book by Mathews.
  • Numerical Methods with MATLAB for Engineers and Scientists: An Applied Approach
    优质
    这本书《工程与科学中的数值方法及其MATLAB应用》采用实用的方法介绍了如何使用MATLAB解决工程师和科学家面临的各种数值问题。 Title: Applied Numerical Methods with MATLAB for Engineers and Scientists, 4th Edition Author: Steven Chapra Length: 720 pages Edition: 4 Language: English Publisher: McGraw-Hill Education Publication Date: February 6, 2017 ISBN-10: 0073397962 ISBN-13: 9780073397962 Table of Contents: **Part One: Modeling, Computers, and Error Analysis** Chapter 1. Mathematical Modeling, Numerical Methods, and Problem Solving Chapter 2. MATLAB Fundamentals Chapter 3. Programming with MATLAB Chapter 4. Roundoff and Truncation Errors **Part Two: Roots and Optimization** Chapter 5. Roots: Bracketing Methods Chapter 6. Roots: Open Methods Chapter 7. Optimization **Part Three: Linear Systems** Chapter 8. Linear Algebraic Equations and Matrices Chapter 9. Gauss Elimination Chapter 10. LU Factorization Chapter 11. Matrix Inverse and Condition Chapter 12. Iterative Methods Chapter 13. Eigenvalues **Part Four: Curve Fitting** Chapter 14. Linear Regression Chapter 15. General Linear Least-Squares and Nonlinear Regression Chapter 16. Fourier Analysis Chapter 17. Polynomial Interpolation Chapter 18. Splines and Piecewise Interpolation **Part Five: Integration and Differentiation** Chapter 19. Numerical Integration Formulas Chapter 20. Numerical Integration of Functions Chapter 21. Numerical Differentiation **Part Six: Ordinary Differential Equations** Chapter 22. Initial-Value Problems Chapter 23. Adaptive Methods and Stiff Systems Chapter 24. Boundary-Value Problems Appendices: A. MATLAB Built-In Functions B. MATLAB M-File Functions C. Introduction to Simulink
  • Software Engineering, 9th Edition by Lan Sommerville (English Text Version)
    优质
    《软件工程(第9版)》由兰·萨默维尔撰写,本书全面介绍了软件开发过程中的关键理论与实践方法,是计算机科学专业学生和从业人员的重要参考书。 《软件工程》(第9版),作者Lan Sommerville。
  • Numerical-Methods-with-Fortran: 数值方法I-IMF的脚本开发-UNMSM
    优质
    Numerical-Methods-with-Fortran是为秘鲁圣马科斯国立大学(IMF)编写的数值方法I课程配套脚本,利用Fortran语言进行编程实践。 数值方法是一种工具,通过这种方法可以使用精确运算来公式化并解决数学问题。尽管存在多种类型的数值方法,但它们有一个共同点:总是需要大量的乏味算术计算。 该存储库包含以下用于Fortran 90的数值方法脚本: - 高斯—乔丹 - 杜利特尔 - 高斯—赛德尔 - 三次样条 - 牛顿—拉普森 参考文献如下: 1. Chapra, SC和Canale RP(1998)。《工程师的数值方法》(第2版),纽约:麦格劳-希尔。 2. Nakamura,S。(1992)。《带有软件的数值方法》(第一版)墨西哥。
  • C++ Programming: A Comprehensive Guide (10th Edition) with Sample Code (English Original Version)
    优质
    《C++编程全面指南(第10版)》提供详尽的教程与示例代码,适合希望深入学习和掌握C++语言的专业程序员及编程爱好者。英文原版。 《C++ How to Program》是由Paul Deitel与Harvey Deitel合著的一本经典教程,现已更新至第10版。这本书因其全面性、深入浅出的讲解以及丰富的示例代码而闻名,是初学者学习C++的理想选择。在最新版本中,作者们详细介绍了C++11、C++14和C++17的新特性,帮助读者紧跟语言发展的步伐。 本书涵盖了从基础到高级的各种主题: 1. **基础知识**:包括变量、数据类型、运算符、流程控制(如if-else、switch语句)、循环结构以及函数的使用与定义。此外还介绍了头文件和命名空间管理。 2. **面向对象编程**:深入讲解了类和对象的概念,封装性及继承等核心概念,并探讨构造函数、析构函数的应用,友元关系,虚函数与纯虚函数等内容。 3. **模板技术**:重点讨论了如何使用函数模板和类模板实现泛型编程。 4. **STL(标准库)**:介绍了容器类型(如vector, list, deque等)、迭代器、算法以及功能对象的运用。这些都是C++标准库的重要组成部分。 5. **异常处理机制**:指导读者如何使用try-catch-throw语句编写健壮程序,以应对运行时错误。 6. **新特性介绍**(C++11): 例如右值引用、auto关键字、lambda表达式以及范围for循环等。还涉及动态内存管理中的智能指针如shared_ptr, unique_ptr和weak_ptr的使用。 7. **C++14与C++17扩展内容**: 包括通用引用,变量模板及初始化列表等内容。 8. **输入输出操作**:介绍了iostream库中cin、cout等流对象的应用以及文件读写方法。 9. **实践项目**:书中包含多个实际编程案例,帮助读者将所学知识应用于实践中并提升自身技能水平。 10. **调试与测试技术**: 介绍了如何使用调试工具和单元测试框架进行程序的调试及质量保证工作。 通过阅读此书,你能够全面掌握C++语言,并具备编写高效且易于维护代码的能力。无论是编程新手还是希望进一步提高技能的专业人士,《C++ How to Program》都是一个极佳的学习资源。同时结合书中提供的示例代码,在实践中加深理解,从而更好地驾驭这门强大的编程工具。
  • Numerical Methods for Engineers - McGraw-Hill (2014)
    优质
    《Numerical Methods for Engineers》(2014)是由McGraw-Hill出版的一本工程数学领域的经典教材,详细介绍了数值方法在工程问题中的应用。 Instructors love Numerical Methods for Engineers because it simplifies teaching. Students appreciate the books clarity and examples, which are tailored to their needs. The text covers a wide range of applications across all engineering disciplines. The sixth edition maintains the effective instructional methods from previous editions. Chapra and Canales introduce each part with sections called Motivation, Mathematical Background, and Orientation. These sections prepare students for upcoming problems in an engaging way. Each section concludes with an Epilogue that includes Trade-Offs, Important Relationships and Formulas, and Advanced Methods and Additional References. The Epilogue goes beyond a simple summary to deepen understanding of the material covered. This edition features approximately 20 percent new or revised problems. These updates reflect expanded coverage across various engineering disciplines such as biotechnology and biomedical engineering. Users will find guidance on using software packages like MATLAB, Excel with VBA, and Mathcad in their studies. This includes information about developing MATLAB m-files and VBA macros.
  • Numerical Methods for Stochastic Computations - A Spectral Approach...
    优质
    《Numerical Methods for Stochastic Computations》一书采用谱方法探讨随机计算中的数值技术,提供解决高维随机问题的有效算法和理论分析。 这本书介绍了随机方程的数值计算方法,特别是那些由系数或区域随机性产生的方程。书中涵盖了多项式混沌展开(gPC)和配置法等多种技术,并提供了一些简单的应用实例。
  • Planning Algorithm (English Version)
    优质
    Planning Algorithm explores the fundamental concepts and advanced techniques in algorithmic planning, essential for artificial intelligence and robotics. It covers search methods, heuristics, and constraint satisfaction for efficient problem-solving. 这本书现在已经绝版了,如果有需要的话可以下载。
  • English Version 2.rar
    优质
    English Version 2.rar 是一个包含英语学习材料或资源的压缩文件,适用于需要提高英语水平的学习者和教育工作者。 多样化的特征表明我们不能用单一的标准来衡量所有学校或仅凭一个维度来办大学,而应该采取更加多元化的策略,将“金字塔”结构转变为类似“五指山”的形态,即从单一的高峰变为多个突出点。在高等教育普及化的大背景下,并结合当前教育领域的互联网和智能技术的发展趋势来看,学习化成为高校的重要特征。