Writing your own linear algebra matrix library in C
ARTICLE IS A DRAFT
ARTICLE IS A DRAFT
Use a portable shebang
Description
In the last article I’ve described Euclid’s algorithm for finding the greatest common divisor of two given numbers.
The code from this article was refactored on 2021-01-03. It now makes use of the “Try with resources” Java feature.
Introduction
Recently I’ve started to implement (or reimplement) the most common algorithms a software developer should know . One of the nicest books I found on this top...
If you’ve tried to write your own calculator (something in the style of calculator) you’ve probably had to build a simple converter for your mathematical exp...
This tutorial assumes the reader is familiar with C macros, C pointers, and basic data-structures.