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
- Host: GitHub
- URL: https://github.com/jserv/matrix_oo
- Owner: jserv
- Created: 2017-03-19T19:12:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-07T07:58:05.000Z (over 9 years ago)
- Last Synced: 2025-04-22T22:57:06.396Z (over 1 year ago)
- Language: C
- Size: 1.95 KB
- Stars: 14
- Watchers: 2
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)