1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
//! Ratio's matrix data library

use std::marker::PhantomData;
use std::ops::{Add, AddAssign, Range, Sub, SubAssign};

use snafu::prelude::*;

use crate::traits::{Contains2D, Dimensions2D, Domain2D, Matrix2D, MatrixMut, MatrixRef};

pub mod traits;

#[cfg(test)]
mod tests;

/// Matrix dimensions don't agree. Values ({n_values}) modulo columns ({n_cols}) should be 0.
#[derive(Clone, Debug, Snafu)]
pub struct MatrixDimensionError {
    /// Number of values.
    pub n_values: usize,
    /// Invalid number of columns in a row.
    pub n_cols: usize,
}

/// Matrix view out of bounds.
#[derive(Clone, Debug, Snafu)]
pub struct MatrixViewOutOfBoundsError {
    /// Input data dimensions.
    pub dimensions: MatrixRange,
    /// Invalid range.
    pub range: MatrixRange,
}

/// Matrix cell access out of bounds.
#[derive(Clone, Debug, Snafu)]
pub struct CoordinatesOutOfBoundsError {
    /// Matrix data area.
    pub range: MatrixRange,
    /// Attempted access coordinates.
    pub coordinates: MatrixCoordinates,
}

/// Two-dimensional matrix.
#[derive(Clone, Debug, Default, PartialEq)]
#[cfg_attr(
    feature = "serde",
    derive(serde::Serialize, serde::Deserialize),
    serde(default, rename_all = "camelCase")
)]
pub struct Matrix<C> {
    /// Matrix values as a single vector.
    pub values: Vec<C>,
    /// Matrix dimensions.
    pub dimensions: MatrixDimensions,
}
impl<C> Matrix<C> {
    /// Get the vector index based on a set of coordinates.
    pub fn index<T: Into<MatrixCoordinates>>(
        &self,
        coordinates: T,
    ) -> Result<usize, CoordinatesOutOfBoundsError> {
        let x: MatrixCoordinates = coordinates.into();
        if self.range().contains(&x) {
            Ok(x.row * self.n_cols() + x.col)
        } else {
            Err(CoordinatesOutOfBoundsError {
                coordinates: x,
                range: self.range(),
            })
        }
    }
    /// Slice this matrix to these rows and columns.
    pub fn slice<R: Into<MatrixRange>>(
        &self,
        range: R,
    ) -> Result<MatrixSlice<'_, C>, MatrixSliceError> {
        let range: MatrixRange = range.into();
        if self.range().contains(&range) {
            Ok(MatrixSlice {
                values: &self.values,
                input_dimensions: self.dimensions,
                view_range: range,
            })
        } else {
            MatrixViewOutOfBoundsSnafu {
                range,
                dimensions: self.dimensions,
            }
            .fail()
            .context(SliceRangeOutOfBoundsSnafu)
        }
    }
}
impl<C> Matrix2D<C> for Matrix<C> {
    fn new(values: Vec<C>, n_cols: usize) -> Result<Self, MatrixDimensionError> {
        let n_values = values.len();
        let dimensions = MatrixDimensions::new(n_values / n_cols, n_cols);
        if dimensions.len() == n_values {
            Ok(Self { values, dimensions })
        } else {
            MatrixDimensionSnafu { n_values, n_cols }.fail()
        }
    }
}
impl<C> MatrixRef<C> for Matrix<C> {
    fn get<T: Into<MatrixCoordinates>>(
        &self,
        coordinates: T,
    ) -> Result<&C, CoordinatesOutOfBoundsError> {
        let x: MatrixCoordinates = coordinates.into();
        let index = self.index(x)?;
        self.values.get(index).context(CoordinatesOutOfBoundsSnafu {
            range: self.range(),
            coordinates: x,
        })
    }
}
impl<C> MatrixMut<C> for Matrix<C> {
    fn set<T: Into<MatrixCoordinates>>(
        &mut self,
        coordinates: T,
        value: C,
    ) -> Result<C, CoordinatesOutOfBoundsError> {
        let coordinates: MatrixCoordinates = coordinates.into();
        let index = self.index(coordinates)?;
        if let Some(entry) = self.values.get_mut(index) {
            Ok(std::mem::replace(entry, value))
        } else {
            Err(CoordinatesOutOfBoundsError {
                range: self.range(),
                coordinates,
            })
        }
    }
}
impl<C> Domain2D for Matrix<C> {
    fn row_range(&self) -> Range<usize> {
        0..self.dimensions.n_rows
    }

    fn col_range(&self) -> Range<usize> {
        0..self.dimensions.n_cols
    }
}

/// Matrix dimensions don't agree. Values ({n_values}) modulo columns ({n_cols}) should be 0.
#[derive(Clone, Debug, Snafu)]
pub enum MatrixSliceError {
    SliceInputDimension { source: MatrixDimensionError },
    SliceRangeOutOfBounds { source: MatrixViewOutOfBoundsError },
}

/// Slice of a matrix.
#[derive(Clone, Debug, Default, PartialEq)]
pub struct MatrixSlice<'a, C> {
    /// Input matrix values as a single slice reference.
    pub values: &'a [C],
    /// Dimensions of the input data.
    pub input_dimensions: MatrixDimensions,
    /// Slice or view range with respect to the input data.
    pub view_range: MatrixRange,
}
impl<'a, C> MatrixSlice<'a, C> {
    /// Create a new slice from a matrix. Takes a reference to the input values' slice and the
    /// number of columns in each row as well as the intended range of the slice.
    pub fn new<R: Into<MatrixRange>>(
        values: &'a [C],
        n_cols: usize,
        range: R,
    ) -> Result<Self, MatrixSliceError> {
        let n_values = values.len();
        let n_rows = n_values / n_cols;
        let input_dimensions = MatrixDimensions::new(n_rows, n_cols);
        if values.len() != input_dimensions.len() {
            return MatrixDimensionSnafu { n_values, n_cols }
                .fail()
                .context(SliceInputDimensionSnafu);
        }
        let domain: MatrixRange = input_dimensions.into();
        let range: MatrixRange = range.into();
        if domain.contains(&range) {
            Ok(Self {
                values,
                input_dimensions,
                view_range: range,
            })
        } else {
            MatrixViewOutOfBoundsSnafu {
                dimensions: input_dimensions,
                range,
            }
            .fail()
            .context(SliceRangeOutOfBoundsSnafu)
        }
    }

    /// Get the index for item access in the reference slice.
    /// The provided coordinates should be with respect to the slice's start!
    pub fn index<T: Into<MatrixCoordinates>>(
        &self,
        coordinates: T,
    ) -> Result<usize, CoordinatesOutOfBoundsError> {
        let x: MatrixCoordinates = coordinates.into();
        let x = x + self.view_range.start;
        if self.view_range.contains(&x) {
            Ok(x.row * self.input_dimensions.n_cols + x.col)
        } else {
            Err(CoordinatesOutOfBoundsError {
                coordinates: x,
                range: self.view_range,
            })
        }
    }
}

impl<'a, C> MatrixSlice<'a, C>
where
    C: Clone + Default,
{
    /// Clone the data into this slice into a matrix of it's own size.
    pub fn to_matrix(&self) -> Matrix<C> {
        Matrix::new(
            self.row_range()
                .flat_map(|row| {
                    self.col_range().filter_map(move |col| {
                        self.get(MatrixCoordinates::new(row, col)).ok().cloned()
                    })
                })
                .collect(),
            self.view_range.col_range().end,
        )
        .unwrap_or_default()
    }
}
impl<'a, C> MatrixRef<C> for MatrixSlice<'a, C> {
    fn get<T: Into<MatrixCoordinates>>(
        &self,
        coordinates: T,
    ) -> Result<&C, CoordinatesOutOfBoundsError> {
        let coordinates: MatrixCoordinates = coordinates.into();
        let index = self.index(coordinates)?;
        self.values.get(index).context(CoordinatesOutOfBoundsSnafu {
            range: self.view_range,
            coordinates,
        })
    }
}
impl<'a, C> Domain2D for MatrixSlice<'a, C> {
    fn row_range(&self) -> Range<usize> {
        0..(self.view_range.end.row - self.view_range.start.row)
    }
    fn col_range(&self) -> Range<usize> {
        0..(self.view_range.end.col - self.view_range.start.col)
    }
}

/// Matrix cell.
#[derive(Clone, Debug, PartialEq)]
pub struct MatrixCellRef<'a, M: MatrixRef<C> + ?Sized, C> {
    /// Matrix to pull values from.
    pub matrix: &'a M,
    /// Coordinates of this cell.
    pub coordinates: MatrixCoordinates,
    /// Phantom data marker for the cell value type.
    _phantom: PhantomData<C>,
}
impl<'a, M: MatrixRef<C> + ?Sized, C> MatrixCellRef<'a, M, C> {
    /// Create a new cell reference using the given coordinates.
    pub fn new<T: Into<MatrixCoordinates>>(matrix: &'a M, coordinates: T) -> Self {
        Self {
            matrix,
            coordinates: coordinates.into(),
            _phantom: PhantomData,
        }
    }
}

/// Location in a 2D matrix.
#[derive(Copy, Clone, Debug, PartialEq)]
#[cfg_attr(
    feature = "serde",
    derive(serde::Serialize, serde::Deserialize),
    serde(rename_all = "camelCase")
)]
pub enum MatrixLocation {
    /// Entire row in a matrix.
    Row(usize),
    /// Entire column in a matrix.
    Col(usize),
    /// Specific coordinates in a matrix.
    Coordinates(MatrixCoordinates),
    /// 2D area in a matrix.
    Range(MatrixRange),
}
impl Default for MatrixLocation {
    fn default() -> Self {
        Self::Coordinates(Default::default())
    }
}
impl From<MatrixCoordinates> for MatrixLocation {
    fn from(value: MatrixCoordinates) -> Self {
        Self::Coordinates(value)
    }
}
impl From<MatrixRange> for MatrixLocation {
    fn from(value: MatrixRange) -> Self {
        Self::Range(value)
    }
}
impl MatrixLocation {
    /// Create a new optional location from an optional row and column coordinate.
    pub fn from_coords(row: Option<usize>, col: Option<usize>) -> Option<Self> {
        match (row, col) {
            (Some(row), Some(col)) => Some(Self::Coordinates(MatrixCoordinates::new(row, col))),
            (Some(row), None) => Some(Self::Row(row)),
            (None, Some(col)) => Some(Self::Col(col)),
            (None, None) => None,
        }
    }
    /// Row or starting row of this location.
    pub fn row(&self) -> Option<usize> {
        match self {
            Self::Row(row) => Some(*row),
            Self::Col(_) => None,
            Self::Coordinates(coord) => Some(coord.row),
            Self::Range(area) => Some(area.row_range().start),
        }
    }
    /// Column or starting column of this location.
    pub fn col(&self) -> Option<usize> {
        match self {
            Self::Row(_) => None,
            Self::Col(col) => Some(*col),
            Self::Coordinates(coord) => Some(coord.col),
            Self::Range(area) => Some(area.col_range().start),
        }
    }
}
impl Add<MatrixCoordinates> for MatrixLocation {
    type Output = MatrixLocation;
    fn add(self, rhs: MatrixCoordinates) -> Self::Output {
        match self {
            Self::Col(col) => Self::Col(col + rhs.col),
            Self::Coordinates(x) => Self::Coordinates(x + rhs),
            Self::Range(range) => Self::Range(range + rhs),
            Self::Row(row) => Self::Row(row + rhs.row),
        }
    }
}
impl AddAssign<MatrixCoordinates> for MatrixLocation {
    fn add_assign(&mut self, rhs: MatrixCoordinates) {
        match self {
            Self::Col(col) => col.add_assign(rhs.col),
            Self::Coordinates(x) => x.add_assign(rhs),
            Self::Range(range) => range.add_assign(rhs),
            Self::Row(row) => row.add_assign(rhs.row),
        };
    }
}
impl Sub<MatrixCoordinates> for MatrixLocation {
    type Output = MatrixLocation;
    fn sub(self, rhs: MatrixCoordinates) -> Self::Output {
        match self {
            Self::Col(col) => Self::Col(col - rhs.col),
            Self::Coordinates(x) => Self::Coordinates(x - rhs),
            Self::Range(range) => Self::Range(range - rhs),
            Self::Row(row) => Self::Row(row - rhs.row),
        }
    }
}
impl SubAssign<MatrixCoordinates> for MatrixLocation {
    fn sub_assign(&mut self, rhs: MatrixCoordinates) {
        match self {
            Self::Col(col) => col.sub_assign(rhs.col),
            Self::Coordinates(x) => x.sub_assign(rhs),
            Self::Range(range) => range.sub_assign(rhs),
            Self::Row(row) => row.sub_assign(rhs.row),
        };
    }
}
impl Add<MatrixLocation> for MatrixLocation {
    type Output = MatrixLocation;
    fn add(self, rhs: MatrixLocation) -> Self::Output {
        match self {
            Self::Col(col) => Self::Col(col + rhs.col().unwrap_or_default()),
            Self::Coordinates(x) => Self::Coordinates(
                x + MatrixCoordinates::new(
                    rhs.row().unwrap_or_default(),
                    rhs.col().unwrap_or_default(),
                ),
            ),
            Self::Range(range) => Self::Range(
                range
                    + MatrixCoordinates::new(
                        rhs.row().unwrap_or_default(),
                        rhs.col().unwrap_or_default(),
                    ),
            ),
            Self::Row(row) => Self::Row(row + rhs.row().unwrap_or_default()),
        }
    }
}
impl AddAssign<MatrixLocation> for MatrixLocation {
    fn add_assign(&mut self, rhs: MatrixLocation) {
        match self {
            Self::Col(col) => col.add_assign(rhs.col().unwrap_or_default()),
            Self::Coordinates(x) => x.add_assign(MatrixCoordinates::new(
                rhs.row().unwrap_or_default(),
                rhs.col().unwrap_or_default(),
            )),
            Self::Range(range) => range.add_assign(MatrixCoordinates::new(
                rhs.row().unwrap_or_default(),
                rhs.col().unwrap_or_default(),
            )),
            Self::Row(row) => row.add_assign(rhs.row().unwrap_or_default()),
        }
    }
}
impl Sub<MatrixLocation> for MatrixLocation {
    type Output = MatrixLocation;
    fn sub(self, rhs: MatrixLocation) -> Self::Output {
        match self {
            Self::Col(col) => Self::Col(col - rhs.col().unwrap_or_default()),
            Self::Coordinates(x) => Self::Coordinates(
                x - MatrixCoordinates::new(
                    rhs.row().unwrap_or_default(),
                    rhs.col().unwrap_or_default(),
                ),
            ),
            Self::Range(range) => Self::Range(
                range
                    - MatrixCoordinates::new(
                        rhs.row().unwrap_or_default(),
                        rhs.col().unwrap_or_default(),
                    ),
            ),
            Self::Row(row) => Self::Row(row - rhs.row().unwrap_or_default()),
        }
    }
}
impl SubAssign<MatrixLocation> for MatrixLocation {
    fn sub_assign(&mut self, rhs: MatrixLocation) {
        match self {
            Self::Col(col) => col.sub_assign(rhs.col().unwrap_or_default()),
            Self::Coordinates(x) => x.sub_assign(MatrixCoordinates::new(
                rhs.row().unwrap_or_default(),
                rhs.col().unwrap_or_default(),
            )),
            Self::Range(range) => range.sub_assign(MatrixCoordinates::new(
                rhs.row().unwrap_or_default(),
                rhs.col().unwrap_or_default(),
            )),
            Self::Row(row) => row.sub_assign(rhs.row().unwrap_or_default()),
        }
    }
}
impl Domain2D for MatrixLocation {
    fn row_range(&self) -> Range<usize> {
        match self {
            Self::Coordinates(coordinates) => Range {
                start: coordinates.row,
                end: coordinates.row + 1,
            },
            Self::Row(row) => Range {
                start: *row,
                end: row + 1,
            },
            Self::Col(_) => Range { start: 0, end: 0 },
            Self::Range(range) => range.row_range(),
        }
    }
    fn col_range(&self) -> Range<usize> {
        match self {
            Self::Coordinates(coordinates) => Range {
                start: coordinates.col,
                end: coordinates.col + 1,
            },
            Self::Row(_) => Range { start: 0, end: 0 },
            Self::Col(col) => Range {
                start: *col,
                end: col + 1,
            },
            Self::Range(range) => range.col_range(),
        }
    }
}

/// Coordinate in a 2D matrix.
#[derive(Copy, Clone, Debug, Default, PartialEq)]
#[cfg_attr(
    feature = "serde",
    derive(serde::Serialize, serde::Deserialize),
    serde(default, rename_all = "camelCase")
)]
pub struct MatrixCoordinates {
    /// Coordinate row.
    pub row: usize,
    /// Coordinate column.
    pub col: usize,
}
impl MatrixCoordinates {
    /// Create a new matrix coordinate instance.
    pub fn new(row: usize, col: usize) -> Self {
        Self { row, col }
    }
}
impl From<(usize, usize)> for MatrixCoordinates {
    fn from(value: (usize, usize)) -> Self {
        Self {
            row: value.0,
            col: value.1,
        }
    }
}
impl Add<MatrixCoordinates> for MatrixCoordinates {
    type Output = Self;
    fn add(self, rhs: MatrixCoordinates) -> Self::Output {
        MatrixCoordinates {
            row: self.row + rhs.row,
            col: self.col + rhs.col,
        }
    }
}
impl AddAssign<MatrixCoordinates> for MatrixCoordinates {
    fn add_assign(&mut self, rhs: MatrixCoordinates) {
        self.row += rhs.row;
        self.col += rhs.col;
    }
}
impl Sub<MatrixCoordinates> for MatrixCoordinates {
    type Output = Self;
    fn sub(self, rhs: MatrixCoordinates) -> Self::Output {
        MatrixCoordinates {
            row: self.row - rhs.row,
            col: self.col - rhs.col,
        }
    }
}
impl SubAssign<MatrixCoordinates> for MatrixCoordinates {
    fn sub_assign(&mut self, rhs: MatrixCoordinates) {
        self.row -= rhs.row;
        self.col -= rhs.col;
    }
}

/// 2D matrix dimensions.
#[derive(Copy, Clone, Debug, Default, PartialEq)]
#[cfg_attr(
    feature = "serde",
    derive(serde::Serialize, serde::Deserialize),
    serde(default, rename_all = "camelCase")
)]
pub struct MatrixDimensions {
    /// Coordinate row.
    pub n_rows: usize,
    /// Coordinate column.
    pub n_cols: usize,
}
impl MatrixDimensions {
    /// Create a new matrix dimensions instance.
    pub fn new(n_rows: usize, n_cols: usize) -> Self {
        Self { n_rows, n_cols }
    }
}
impl From<(usize, usize)> for MatrixDimensions {
    fn from(value: (usize, usize)) -> Self {
        Self {
            n_rows: value.0,
            n_cols: value.1,
        }
    }
}
impl Dimensions2D for MatrixDimensions {
    fn n_rows(&self) -> usize {
        self.n_rows
    }
    fn n_cols(&self) -> usize {
        self.n_cols
    }
}
impl Add<MatrixDimensions> for MatrixDimensions {
    type Output = Self;
    fn add(self, rhs: MatrixDimensions) -> Self::Output {
        MatrixDimensions {
            n_rows: self.n_rows + rhs.n_rows,
            n_cols: self.n_cols + rhs.n_cols,
        }
    }
}
impl AddAssign<MatrixDimensions> for MatrixDimensions {
    fn add_assign(&mut self, rhs: MatrixDimensions) {
        self.n_rows += rhs.n_rows;
        self.n_cols += rhs.n_cols;
    }
}
impl Sub<MatrixDimensions> for MatrixDimensions {
    type Output = Self;
    fn sub(self, rhs: MatrixDimensions) -> Self::Output {
        MatrixDimensions {
            n_rows: self.n_rows - rhs.n_rows,
            n_cols: self.n_cols - rhs.n_cols,
        }
    }
}
impl SubAssign<MatrixDimensions> for MatrixDimensions {
    fn sub_assign(&mut self, rhs: MatrixDimensions) {
        self.n_rows -= rhs.n_rows;
        self.n_cols -= rhs.n_cols;
    }
}

/// 2D range in a matrix.
#[derive(Copy, Clone, Debug, Default, PartialEq)]
#[cfg_attr(
    feature = "serde",
    derive(serde::Serialize, serde::Deserialize),
    serde(default, rename_all = "camelCase")
)]
pub struct MatrixRange {
    /// Starting coordinates of the range (inclusive).
    pub start: MatrixCoordinates,
    /// Ending coordinates of the range (exclusive).
    pub end: MatrixCoordinates,
}
impl MatrixRange {
    /// Create a new matrix area instance.
    pub fn new(rows: Range<usize>, cols: Range<usize>) -> Self {
        Self {
            start: MatrixCoordinates::new(rows.start, cols.start),
            end: MatrixCoordinates::new(rows.end, cols.end),
        }
    }
}
impl Domain2D for MatrixRange {
    /// Row range of this area.
    fn row_range(&self) -> Range<usize> {
        self.start.row..self.end.row
    }

    /// Column range of this area.
    fn col_range(&self) -> Range<usize> {
        self.start.col..self.end.col
    }
}
impl From<(Range<usize>, Range<usize>)> for MatrixRange {
    fn from(value: (Range<usize>, Range<usize>)) -> Self {
        Self::new(value.0, value.1)
    }
}
impl From<((usize, usize), (usize, usize))> for MatrixRange {
    /// Create a range from two sets of coordinates (start, end).
    fn from(value: ((usize, usize), (usize, usize))) -> Self {
        Self {
            start: value.0.into(),
            end: value.1.into(),
        }
    }
}
impl From<MatrixDimensions> for MatrixRange {
    fn from(value: MatrixDimensions) -> Self {
        Self::new(0..value.n_rows, 0..value.n_cols)
    }
}
impl Add<MatrixCoordinates> for MatrixRange {
    type Output = Self;
    fn add(self, rhs: MatrixCoordinates) -> Self::Output {
        Self {
            start: self.start + rhs,
            end: self.end + rhs,
        }
    }
}
impl AddAssign<MatrixCoordinates> for MatrixRange {
    fn add_assign(&mut self, rhs: MatrixCoordinates) {
        self.start += rhs;
        self.end += rhs;
    }
}
impl Sub<MatrixCoordinates> for MatrixRange {
    type Output = Self;
    fn sub(self, rhs: MatrixCoordinates) -> Self::Output {
        Self {
            start: self.start - rhs,
            end: self.end - rhs,
        }
    }
}
impl SubAssign<MatrixCoordinates> for MatrixRange {
    fn sub_assign(&mut self, rhs: MatrixCoordinates) {
        self.start -= rhs;
        self.end -= rhs;
    }
}