Skip to content

1 General Structure

Süleyman Özarslan edited this page Sep 14, 2022 · 1 revision

General Structure

The substructure and types that make up a matrix are as follows:

type Col float64
type Row []Col
type Matrix []Row

Ultimately, all values that make up a matrix are of type float64 and appropriate conversions can be made.

Clone this wiki locally