mechtutor com
mechtutor com
  • 91
  • 938 191
Least-Squares Method: Linear Regression for Curve Fitting
This tutorial explains curve fitting by linear approximation with derivation and coding. The least-squares approximation is the basis of linear and nonlinear curve fitting methods. #curvefitting is a common technique in experimental science and engineering. In this video #tutorial, #python is used as a programming language alongside NumPY and Matplotlib modules.
Data source: Gerald C. F., Applied Numerical Analysis, 2nd Ed.
Переглядів: 873

Відео

Data Table Interpolation in Two-Dimensions
Переглядів 3033 місяці тому
This tutorial discusses the theory and coding of 2-dimensional interpolation in multi-column data tables. In this video tutorial, Newton's #interpolation is used in the #python #code to solve a numerical example from a table of physical properties of materials (dynamic viscosity of water). Watch my tutorial on Newton's interpolation method: ua-cam.com/video/yIoev10C4ds/v-deo.html 00:00 Introduc...
Newton's Interpolation with Divided Differences Table
Переглядів 5063 місяці тому
This tutorial explains how to code and plot Newton's interpolation polynomial for a given data set. Plotting Graphs with Python ebook - Free Download: mechtutor.thinkific.com/products/digital_downloads/matplotlib-quick-start-ebook Newton's #interpolation #polynomial is formed using the divided differences table, created manually and using Python code. The final polynomial #plot is generated usi...
Python XYZ Plots - Part 2: Surfaces | Matplotlib Tutorials
Переглядів 1274 місяці тому
This tutorial explains step-by-step how to plot 3D surfaces using Matplotlib, the graph plotting package of Python. This #tutorial and more are in this #free #ebook: mechtutor.thinkific.com/products/digital_downloads/matplotlib-quick-start-ebook #matplotlib is the essential #python toolbox for data visualization which integrates seamlessly with other computational and statistical packages such ...
Python XYZ Plots - Part 1: Contours | Matplotlib Tutorials
Переглядів 2574 місяці тому
This tutorial explains how to make contour plots using Matplotlib, the graph plotting package of Python. This #tutorial and more in #FREE #ebook: mechtutor.thinkific.com/products/digital_downloads/matplotlib-quick-start-ebook #matplotlib is the essential #python toolbox for data visualization which integrates seamlessly with other computational and statistical packages such as NumPy, SciPy, and...
Plot Multiple Curves and Enhance Your Graphs | Matplotlib Tutorials
Переглядів 464 місяці тому
This tutorial shows how to plot multiple curves in a single graph with more details using Matplotlib, the graph plotting package of Python. This tutorial and more are in this free ebook: mechtutor.thinkific.com/products/digital_downloads/matplotlib-quick-start-ebook Matplotlib is the essential #python toolbox for #datavisualization which integrates seamlessly with other computational and statis...
Plot Your Graphs with Python and Matplotlib
Переглядів 594 місяці тому
This tutorial explains the first and basic steps to plot data and create elegant graphs using Matplotlib, the data visulization package of Python. This tutorial and more are in this free ebook: mechtutor.thinkific.com/products/digital_downloads/matplotlib-quick-start-ebook Matplotlib is the essential Python toolbox for #datavisualization which integrates seamlessly with other computational and ...
Relational and Logical Operation of Arrays | NumPy Tutorials
Переглядів 1,7 тис.4 місяці тому
This tutorial explains the relational and logical operators used in vector and matrix conditional algorithms. Learn more about the full course here: mechtutor.thinkific.com/courses/numpy-quick-start #NumPy is the essential foundation #Python package for all data analysis data visualization Python packages like Pandas, SciPy, and Matplotlib. This video #tutorial is part of the "NumPy Quick Start...
Essential Statistical Operations | NumPy Tutorials
Переглядів 1,8 тис.4 місяці тому
This tutorial discusses the basic statistical operations and functions applied to NumPy arrays. Learn more about the full course here: mechtutor.thinkific.com/courses/numpy-quick-start #numpy is the essential foundation #Python package for all data analysis data visualization Python packages like Pandas, SciPy, and Matplotlib. This video #tutorial is part of the "NumPy Quick Start" #onlinecours...
How to Solve a Linear System of Simultaneous Equations | NumPy Tutorials
Переглядів 3414 місяці тому
This tutorial is a numerical example of solving simultaneous linear equations using NumPy's linear algebra module. Learn more about the full course here: mechtutor.thinkific.com/courses/numpy-quick-start #NumPy is the essential foundation #Python package for all data analysis data visualization Python packages like Pandas, SciPy, and Matplotlib. This video #tutorial is part of the "NumPy Quick ...
Arithmetic and Algebraic Operations on Arrays | NumPy Tutorials
Переглядів 1824 місяці тому
This tutorial is about arithmetic and algebraic operations on arrays (vectors and matrices) using NumPy, the numerical package of Python. Learn more about the full course here: mechtutor.thinkific.com/courses/numpy-quick-start #NumPy is the essential foundation #Python package for all data analysis data visualization Python packages like Pandas, SciPy, and Matplotlib. This video #tutorial is pa...
Special Arrays for Computational Purposes | NumPy Tutorials
Переглядів 1814 місяці тому
This tutorial is about special arrays and how to construct vectors and matrices in NumPy for different computational purposes. Learn more about the full course here: mechtutor.thinkific.com/courses/numpy-quick-start #NumPy is the essential foundation #Python package for all data analysis data visualization Python packages like Pandas, SciPy, and Matplotlib. This video #tutorial is part of the "...
Python 2-Dimensional Arrays (Matrices) | NumPy Tutorials
Переглядів 1194 місяці тому
This tutorial is about matrix manipulation (creating, slicing, and operations) using NumPy, the numerical package of Python. Learn more about the full course here: mechtutor.thinkific.com/courses/numpy-quick-start #NumPy is the essential foundation #Python package for all data analysis data visualization Python packages like Pandas, SciPy, and Matplotlib. This video #tutorial is part of the "Nu...
Array Operation Functions | NumPy Tutorials
Переглядів 744 місяці тому
This tutorial is about the array manipulation operations and methods using NumPy, the numerical package of Python. Learn more about the full course here: mechtutor.thinkific.com/courses/numpy-quick-start #NumPy is the essential foundation #Python package for all data analysis data visualization Python packages like Pandas, SciPy, and Matplotlib. This video #tutorial is part of the "NumPy Quick ...
Properties of Arrays: How NumPy Arrays are Different From Python Lists | NumPy Tutorials
Переглядів 744 місяці тому
This tutorial explains how to create NumPy arrays and the major properties that make NumPy arrays more powerful than Python lists in numerical computation and data manipulation. Learn more about the full course here: mechtutor.thinkific.com/courses/numpy-quick-start #NumPy is the essential foundation #Python package for all data analysis data visualization Python packages like Pandas, SciPy, an...
Using import to Include NumPy Functions and Modules in Python | NumPyTutorials
Переглядів 574 місяці тому
Using import to Include NumPy Functions and Modules in Python | NumPyTutorials
Exception Handling in Python: Raising User-Defined Errors Messages | Python Essentials Tutorials
Переглядів 204 місяці тому
Exception Handling in Python: Raising User-Defined Errors Messages | Python Essentials Tutorials
Exception Handling in Python: finally Block | Python Essentials Tutorials
Переглядів 134 місяці тому
Exception Handling in Python: finally Block | Python Essentials Tutorials
Exceptions in Python: try-except-else Structure | Python Essentials Tutorials
Переглядів 164 місяці тому
Exceptions in Python: try-except-else Structure | Python Essentials Tutorials
Writing Data to a CSV File | Python Essentials Tutorials
Переглядів 94 місяці тому
Writing Data to a CSV File | Python Essentials Tutorials
Reading Data from CSV files | Python Essentials Tutorials
Переглядів 84 місяці тому
Reading Data from CSV files | Python Essentials Tutorials
Writing Plain Text To Files | Python Essentials Tutorials
Переглядів 74 місяці тому
Writing Plain Text To Files | Python Essentials Tutorials
Reading Plain Text Files (Part 2) | Python Essentials Tutorials
Переглядів 64 місяці тому
Reading Plain Text Files (Part 2) | Python Essentials Tutorials
Reading Plain Text Files (Part 1) | Python Essentials Tutorials
Переглядів 64 місяці тому
Reading Plain Text Files (Part 1) | Python Essentials Tutorials
Deleting User-Defined Functions and Constants: del Keyword | Python Essentials Tutorials
Переглядів 84 місяці тому
Deleting User-Defined Functions and Constants: del Keyword | Python Essentials Tutorials
Global and Local Scopes of Python User-Defined Functions | Python Essential Tutorials
Переглядів 84 місяці тому
Global and Local Scopes of Python User-Defined Functions | Python Essential Tutorials
Python User-Defined Functions: Making Functions Return Multiple Values | Python Essentials Tutorials
Переглядів 154 місяці тому
Python User-Defined Functions: Making Functions Return Multiple Values | Python Essentials Tutorials
Python User-Defined Functions: lambda Keyword | Python Essentials Tutorials
Переглядів 94 місяці тому
Python User-Defined Functions: lambda Keyword | Python Essentials Tutorials
Python User-Defined Functions: def Keyword | Python Essentials Tutorials
Переглядів 224 місяці тому
Python User-Defined Functions: def Keyword | Python Essentials Tutorials
Python Loops: Inline for-Loop | Python Essentials Tutorials
Переглядів 594 місяці тому
Python Loops: Inline for-Loop | Python Essentials Tutorials