From 799a1773b25643704ee20f96a5af4bb3b499f8b0 Mon Sep 17 00:00:00 2001 From: Ryan C Cooper Date: Sat, 24 Feb 2018 17:26:35 -0500 Subject: [PATCH 1/4] Delete Untitled.ipynb --- Untitled.ipynb | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 Untitled.ipynb diff --git a/Untitled.ipynb b/Untitled.ipynb deleted file mode 100644 index 2fd6442..0000000 --- a/Untitled.ipynb +++ /dev/null @@ -1,6 +0,0 @@ -{ - "cells": [], - "metadata": {}, - "nbformat": 4, - "nbformat_minor": 2 -} From 07bdac490750c3a33964bd0df59001399543a664 Mon Sep 17 00:00:00 2001 From: Ryan C Cooper Date: Sat, 24 Feb 2018 17:26:56 -0500 Subject: [PATCH 2/4] Delete Matlab refresher.ipynb --- Matlab refresher.ipynb | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 Matlab refresher.ipynb diff --git a/Matlab refresher.ipynb b/Matlab refresher.ipynb deleted file mode 100644 index 8cefa3e..0000000 --- a/Matlab refresher.ipynb +++ /dev/null @@ -1,34 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Octave", - "language": "octave", - "name": "octave" - }, - "language_info": { - "file_extension": ".m", - "help_links": [ - { - "text": "MetaKernel Magics", - "url": "https://github.com/calysto/metakernel/blob/master/metakernel/magics/README.md" - } - ], - "mimetype": "text/x-octave", - "name": "octave", - "version": "0.19.14" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} From 9ef915a2f14786baee69029de6e69f58570f848a Mon Sep 17 00:00:00 2001 From: Ryan C Cooper Date: Sat, 24 Feb 2018 17:31:53 -0500 Subject: [PATCH 3/4] added description of matlab intro --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 8fb2830..b54825a 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,12 @@ ## Examples of Numerical Analysis in Dynamics +### 0- Intro to Matlab and Numerical integration + +Matlab-and (Octave)[https://www.gnu.org/software/octave/]-review of syntax and numerical integration techniques. In particular, Euler's method and the ode-integration routines ode23 and ode45, Runge-Kutta integration methods. + +[Intro to Matlab and Numerical Integration](./intro_to_numerical_integration.ipynb) + ### 1- Double Pendulum Kinematics [double_pendulum.m](./double_pendulum.m) has a script to plot the velocity over time and From b73dc1dfedb03973d1e69626146ae04a141ae247 Mon Sep 17 00:00:00 2001 From: Ryan C Cooper Date: Sat, 24 Feb 2018 17:32:53 -0500 Subject: [PATCH 4/4] fixed octave link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b54825a..92a52ab 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ### 0- Intro to Matlab and Numerical integration -Matlab-and (Octave)[https://www.gnu.org/software/octave/]-review of syntax and numerical integration techniques. In particular, Euler's method and the ode-integration routines ode23 and ode45, Runge-Kutta integration methods. +Matlab-and [Octave](https://www.gnu.org/software/octave/)-review of syntax and numerical integration techniques. In particular, Euler's method and the ode-integration routines ode23 and ode45, Runge-Kutta integration methods. [Intro to Matlab and Numerical Integration](./intro_to_numerical_integration.ipynb)