Files
orx/orx-math
Edwin Jakobs b7ba6f6daa Feature variants (#376)
Migrate from buildSrc to build-logic. Setup feature variants.
2025-09-17 10:03:02 +02:00
..
2025-09-17 10:03:02 +02:00
2025-08-27 19:48:23 +00:00

orx-math

Mathematical utilities

Demos

linearrange/DemoLinearRange02

linearrange-DemoLinearRange02Kt

source code

linearrange/DemoLinearRange03

linearrange-DemoLinearRange03Kt

source code

matrix/DemoLeastSquares01

Demonstrate least squares method to find a regression line through noisy points Line drawn in red is the estimated line, in green is the ground-truth line

Ax = b => x = A⁻¹b because A is likely inconsistent, we look for an approximate x based on AᵀA, which is consistent. x̂ = (AᵀA)⁻¹ Aᵀb

matrix-DemoLeastSquares01Kt

source code

matrix/DemoLeastSquares02

Demonstrate least squares method to fit a cubic bezier to noisy points

matrix-DemoLeastSquares02Kt

source code

rbf/RbfInterpolation01

rbf-RbfInterpolation01Kt

source code

rbf/RbfInterpolation02

rbf-RbfInterpolation02Kt

source code

simplexrange/DemoSimplexRange3D01

simplexrange-DemoSimplexRange3D01Kt

source code