Skip to content

Commit c81540c

Browse files
authored
Merge branch 'main' into copilot/add-lu-decomposition-factorization
2 parents c68aa1e + b02b4bc commit c81540c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
pull_request:
1212
branches: ['**', '!update/**', '!pr/**']
1313
push:
14-
branches: ['**', '!update/**', '!pr/**', '!benchmark', '!copilot/**']
14+
branches: ['**', '!update/**', '!pr/**', '!benchmark']
1515
tags: [v*]
1616

1717
env:

site/docs/cheatsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Is not supported in an "implicit" fashion. Look at the methods;
155155
|-----------|-------|-------|--------|
156156
| Extract diagonal | `m.diag` | `np.diag(a)` | `diag(a)` |
157157
| Create diagonal matrix | `Matrix.createDiag(a)` | `np.diag(v)` | `diag(v,0)` |
158-
| Tile Matrix | `Matrix.tile(m, rows, cols)` | `np.tile(a, (m, n))` | `repmat(a, m, n)` |
158+
| Tile Matrix | `Matrix.tile(m, m, n)` | `np.tile(a, (m, n))` | `repmat(a, m, n)` |
159159
| Unique values | `vec.unique` | `np.unique(a)` | `unique(a)` |
160160
| Sort | `narr.sort(vec)()` | `np.sort(a)` | `sort(a)` |
161161
| Horizontal concatenation | `m.horzcat(n)` or `horzcat(m, n)` | `np.hstack([a, b])` or `np.concatenate([a,b], axis=1)` | `horzcat(a,b)` or `[a b]` |

0 commit comments

Comments
 (0)