mathnathan/ESC-matrix-class
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
A Matrix Library Authors: Essentials of Scientific Computing class at Florida State University // Put your names here!!! This will be a shared README file. Feel free to edit or change this file if your constributions to the project require documentation for the users of this library. ----------- The project structure is currently as follows --------------- Matrix.h - The header file declaring the Matrix class and #including the Matrix.cpp file for it's definitions Matrix.cpp - The implementation of all the functions in the Matrix.h file driver.cpp - This file #includes the Matrix library and tests its routines ----------------------------- Compilation -------------------------------- Currently the project can be compiled and run with a simple call to your favorite C++ compiler. bash$ g++ driver.cpp That should compile the library and driver file and immediately test it out!