An open API service indexing awesome lists of open source software.

https://github.com/jserv/matrix_oo

Object-oriented matrix implementation in C99
https://github.com/jserv/matrix_oo

Last synced: over 1 year ago
JSON representation

Object-oriented matrix implementation in C99

Awesome Lists containing this project

README

          

# Introduction

Sample matrix implementation illustrating object-oriented techniques in C99.

It is clear that the techniques presented here have not the pretension to
replace C++, but it provides enough to do serious object-oriented
programming:

* The procedural model using C functions
* The abstract data type model using public interface and private
implementation as well as data and names encapsulation.
* The object-oriented model using (multiple) inheritance and polymorphism
which allows to manipulate different object types through a common
interface.

## Further Reading
* [Matrix Mul](https://msdn.microsoft.com/zh-tw/library/hh873134.aspx)