Course Term: Trinity
Course Overview:

Producing almost any numerical software requires writing codes that manipulate matrices and vectors, making Matlab a natural choice as an introductory programming language for scientific computing. However, the ease of programming in Matlab comes at a cost: the codes take a relatively long time to execute; and the software is commercial. While the use of procedural languages such as Fortran and C will overcome these limitations, they do not allow the straightforward coding of operations between matrices and vectors permitted by Matlab. An alternative approach is to use an object-oriented language such as C++ , where vectors and matrices can be represented as classes. Writing subroutines for these classes that have the same syntax as employed by Matlab allows code developed in Matlab to be translated with minimal effort into C++ code. Such an approach combines the ease of development in the Matlab environment without the associated drawbacks.

Course Syllabus:

C++ programming fundamentals:

  1. Variables and expressions;
  2. Input and output;
  3. Flow of control: if, switch, while, for;
  4. Pointers and references;
  5. Arrays;
  6. Functions.

Object orientation in C++:

  1. Concept of a class;
  2. Private, public and protected class members;
  3. Constructors;
  4. Operator overloading;
  5. Function overloading - templates;
  6. Defining functions that may take default values;
  7. Exceptions;
  8. Derived classes using the example of sparse matrices from Matlab, where a matrix is represented by three vectors.
External Lecturer(s):

Dr Joe Pitt-Francis