Mathematical Modelling & Simulation Lab

November 11, 2020 ยท View on GitHub

made-with-matlab

No.ExperimentDateCodeFile
1Find the solution of an Ordinary Differential Equation (ODE)21st August 2020matlabdoc
2Perform Linear Regression and Fit a Linear Curve to Discrete Data4th September 2020matlabdoc
3Perform Linear Regression and Fit a Quadratic Curve to Discrete Data4th September 2020matlabdoc
4Perform Linear Regression and Fit a Cubic Curve to Discrete Data4th September 2020matlabdoc
5Fit Control Points using a Spline Curve25th September 2020matlabdoc
6Multiple regression in using regress()16th October 2020matlabdoc
7Draw some trajectories for predator prey problem in MATLAB23d October 2020matlabdoc
8Write a Program for Statistical Analysis of Data Using MATLAB.6th November 2020matlabdoc
9Write a program for Monte Carlo method using MATLAB6th November 2020matlabdoc

Running Projects Locally

Clone this repository on your machine and enter the project directory.

git clone https://github.com/anishLearnsToCode/mathematical-modelling-lab.git
cd mathematical-modelling-lab/lab/

Navigate to a project of your choice from the list below and run it as follows e.g. to run experiment 1

cd experiment-01
matlab -nosplash -nodesktop -r "run('experiment_1.m');"

Similarly you can run any experiment in the lab by executing a similar expression as:

cd experiment-n
matlab -nosplash -nodesktop -r "run('experiment_n.m');"

where n stands for the experiment number.