Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add basic operations for row/column reductions in matrix objects #4517

Merged
merged 24 commits into from
Jun 15, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
eb37b25
Add generic functions of issue 3962.
danielrademacher May 27, 2021
1b1905b
Add documentation
May 27, 2021
c1cb279
Fix daniels mistakes
May 27, 2021
02673a0
Tests for SwapMatrixRows and -Columns
May 27, 2021
d0cec97
Checks fixed
May 27, 2021
9472dbf
Corrections
May 27, 2021
1035a6f
Tests: corrections for MatrixObj
May 27, 2021
800d82d
Touch up with Sergio and Thomas' suggestions
May 27, 2021
63eb721
WIP documentation
May 28, 2021
0cf7ec9
Removed bound checks and moved doc in .gd file
May 29, 2021
7fdf647
Tests for all functions and removed checks for IsRowListMatrix
danielrademacher May 29, 2021
e334988
Improvement of swapping rows
danielrademacher Jun 2, 2021
e08f218
Newline at the end of file
danielrademacher Jun 2, 2021
42e1c70
Merge branch 'master' into MatrixObj3962
danielrademacher Jun 2, 2021
592fdbd
Old version of swapmatrixrows
danielrademacher Jun 2, 2021
d4f30c5
Move documentary of RowListMatrix
danielrademacher Jun 2, 2021
1e2226c
Synch master to PR
danielrademacher Jun 2, 2021
e31c2b4
Improvement of documentary: Change synonyms and give an explanation.
danielrademacher Jun 8, 2021
9423dca
Docu improvement: Added a explanation for the synonym choice of MultV…
danielrademacher Jun 8, 2021
334b3b1
Docu correction: Added linebreak in documentation and corrected the t…
danielrademacher Jun 8, 2021
b663332
Docu improvement: Remove old todo list.
danielrademacher Jun 9, 2021
73e5d51
Docu improvement: First and second row/column number -> two row/colum…
danielrademacher Jun 9, 2021
a77ed46
Docu improvement: First and second row/column number -> two row/colum…
danielrademacher Jun 9, 2021
6c6f503
Docu improvement: one row/column -> a row/column.
danielrademacher Jun 9, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions doc/ref/matobj.xml
Original file line number Diff line number Diff line change
Expand Up @@ -286,5 +286,26 @@ for your new type of vector or matrix objects.)

</Section>

<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Section Label="Basic operations for row/column reductions">
<Heading>Basic operations for row/column reductions</Heading>

<#Include Label="MultMatrixRow">
<#Include Label="MultMatrixRowLeft">
<#Include Label="MultMatrixRowRight">
<#Include Label="MultMatrixColumn">
<#Include Label="MultMatrixColumnLeft">
<#Include Label="MultMatrixColumnRight">
<#Include Label="AddMatrixRows">
<#Include Label="AddMatrixRowsLeft">
<#Include Label="AddMatrixRowsRight">
<#Include Label="AddMatrixColumns">
<#Include Label="AddMatrixColumnsLeft">
<#Include Label="AddMatrixColumnsRight">
<#Include Label="SwapMatrixRows">
<#Include Label="SwapMatrixColumns">

</Section>

</Chapter>

Loading