alib
Universal C Library Collection for Machine Learning & Artificial Intelligence
Loading...
Searching...
No Matches
Data Fields
la_matrix Struct Reference

Structure representing a matrix. More...

#include <la.h>

Data Fields

size_t cols
 
double * data
 
size_t rows
 
size_t stride
 

Detailed Description

Structure representing a matrix.

Definition at line 22 of file la.h.

Field Documentation

◆ cols

size_t la_matrix::cols

Number of columns in the matrix

Definition at line 24 of file la.h.

◆ data

double* la_matrix::data

Pointer to the matrix data stored in a row-major format

Definition at line 26 of file la.h.

◆ rows

size_t la_matrix::rows

Number of rows in the matrix

Definition at line 23 of file la.h.

◆ stride

size_t la_matrix::stride

Stride of the matrix (usually equals to cols)

Definition at line 25 of file la.h.


The documentation for this struct was generated from the following file: