https://github.com/formtrix/expresstsb
https://github.com/formtrix/expresstsb
express
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/formtrix/expresstsb
- Owner: Formtrix
- Created: 2025-02-19T17:48:54.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-02-21T00:53:43.000Z (3 months ago)
- Last Synced: 2025-02-21T01:38:39.578Z (3 months ago)
- Topics: express
- Language: TypeScript
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
express server app :::::::::::::::::::::/
# 2D Tensor (Matrix)
## (2 matrices, 2x2) Shape: (2, 2, 2)
```js
tensor = np.array([
[
[1, 2],
[3, 4],
],
[
[5, 6],
[7, 8],
],
]);
```# 3D tensor, 2x2
```js
(3 matrices, 2x2)
tensor = np.array([
[[1, 2], [3, 4]],
[[5, 6], [7, 8]],
[[9, 10], [11, 12]]
])
```# 3D Tensor 3x3
```js
(3 matrices, 3x3)
tensor = np.array([
[[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]]
])
``````json
A 2x2 matrix with 2 matrices.
A 2x2 matrix with 3 matrices.
A 3x3 matrix with 3 matrices.
```