├── LICENSE ├── QR.hhs ├── QR_test.hhs ├── README.md ├── all.hhs ├── any_missing.hhs ├── any_missing_test.hhs ├── bounds.hhs ├── bounds_test.hhs ├── ceil.hhs ├── ceil_test.hhs ├── check_input.hhs ├── check_input_test.hhs ├── cholesky.hhs ├── cholesky_test.hhs ├── correcoef.hhs ├── correcoef_test.hhs ├── cov.hhs ├── cov_test.hhs ├── cubic_equation.hhs ├── cubic_equation_test ├── deep_copy.hhs ├── det.hhs ├── det_test.hhs ├── dot_divide.hhs ├── dot_divide_test.hhs ├── dot_multiply.hhs ├── dot_multiply_test.hhs ├── factorial.hhs ├── factorial_test.hhs ├── fillmissing.hhs ├── fillmissing_test.hhs ├── flatten.hhs ├── floor.hhs ├── floor_test.hhs ├── gcd.hhs ├── gcd_test.hhs ├── hankel.hhs ├── hankel_test.hhs ├── hedgehog-package.json ├── http-server └── server.js ├── identity.hhs ├── identity_test.hhs ├── inv.hhs ├── iqr.hhs ├── iqr_test.hhs ├── is_diag.hhs ├── is_diag_test.hhs ├── is_local_max.hhs ├── is_local_max_test.hhs ├── is_local_min.hhs ├── is_local_min_test.hhs ├── is_missing.hhs ├── is_missing_test.hhs ├── is_number.hhs ├── is_symmetric.hhs ├── is_symmetric_test.hhs ├── is_tril.hhs ├── is_tril_test.hhs ├── is_triu.hhs ├── is_triu_test.hhs ├── lsolve.hhs ├── lsolve_test.hhs ├── lu.hhs ├── lu_test.hhs ├── lusolve.hhs ├── lusolve_test.hhs ├── magic.hhs ├── magic_test.hhs ├── max.hhs ├── mean.hhs ├── mean_test.hhs ├── median.hhs ├── median_test.hhs ├── min.hhs ├── mink.hhs ├── mink_test.hhs ├── missing.hhs ├── missing_test.hhs ├── multinomial.hhs ├── multinomial_test.hhs ├── ndim.hhs ├── ndim_test.hhs ├── normalize.hhs ├── normalize_test.hhs ├── pascal.hhs ├── pascal_test.hhs ├── percentile.hhs ├── percentile_test.hhs ├── quadratic_equation.hhs ├── quadratic_equation_test.hhs ├── quantile.hhs ├── quantile_test.hhs ├── quartic_equation.hhs ├── quartic_equation_test.hhs ├── reshape.hhs ├── reshape_test.hhs ├── resize.hhs ├── resize_test.hhs ├── rmmissing.hhs ├── rmmissing_test.hhs ├── rms.hhs ├── rms_test.hhs ├── shape.hhs ├── smooth.hhs ├── smooth_test.hhs ├── standard_missing.hhs ├── standard_missing_test.hhs ├── sum.hhs ├── test.hhs ├── toeplitz.hhs ├── trace.hhs ├── trace_test.hhs ├── transpose.hhs ├── transpose_test.hhs ├── usolve.hhs ├── usolve_test.hhs ├── vander.hhs └── vander_test.hhs /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/LICENSE -------------------------------------------------------------------------------- /QR.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/QR.hhs -------------------------------------------------------------------------------- /QR_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/QR_test.hhs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/README.md -------------------------------------------------------------------------------- /all.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/all.hhs -------------------------------------------------------------------------------- /any_missing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/any_missing.hhs -------------------------------------------------------------------------------- /any_missing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/any_missing_test.hhs -------------------------------------------------------------------------------- /bounds.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/bounds.hhs -------------------------------------------------------------------------------- /bounds_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/bounds_test.hhs -------------------------------------------------------------------------------- /ceil.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/ceil.hhs -------------------------------------------------------------------------------- /ceil_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/ceil_test.hhs -------------------------------------------------------------------------------- /check_input.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/check_input.hhs -------------------------------------------------------------------------------- /check_input_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/check_input_test.hhs -------------------------------------------------------------------------------- /cholesky.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/cholesky.hhs -------------------------------------------------------------------------------- /cholesky_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/cholesky_test.hhs -------------------------------------------------------------------------------- /correcoef.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/correcoef.hhs -------------------------------------------------------------------------------- /correcoef_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/correcoef_test.hhs -------------------------------------------------------------------------------- /cov.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/cov.hhs -------------------------------------------------------------------------------- /cov_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/cov_test.hhs -------------------------------------------------------------------------------- /cubic_equation.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/cubic_equation.hhs -------------------------------------------------------------------------------- /cubic_equation_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/cubic_equation_test -------------------------------------------------------------------------------- /deep_copy.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/deep_copy.hhs -------------------------------------------------------------------------------- /det.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/det.hhs -------------------------------------------------------------------------------- /det_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/det_test.hhs -------------------------------------------------------------------------------- /dot_divide.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/dot_divide.hhs -------------------------------------------------------------------------------- /dot_divide_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/dot_divide_test.hhs -------------------------------------------------------------------------------- /dot_multiply.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/dot_multiply.hhs -------------------------------------------------------------------------------- /dot_multiply_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/dot_multiply_test.hhs -------------------------------------------------------------------------------- /factorial.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/factorial.hhs -------------------------------------------------------------------------------- /factorial_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/factorial_test.hhs -------------------------------------------------------------------------------- /fillmissing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/fillmissing.hhs -------------------------------------------------------------------------------- /fillmissing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/fillmissing_test.hhs -------------------------------------------------------------------------------- /flatten.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/flatten.hhs -------------------------------------------------------------------------------- /floor.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/floor.hhs -------------------------------------------------------------------------------- /floor_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/floor_test.hhs -------------------------------------------------------------------------------- /gcd.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/gcd.hhs -------------------------------------------------------------------------------- /gcd_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/gcd_test.hhs -------------------------------------------------------------------------------- /hankel.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/hankel.hhs -------------------------------------------------------------------------------- /hankel_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/hankel_test.hhs -------------------------------------------------------------------------------- /hedgehog-package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"math" 3 | } 4 | -------------------------------------------------------------------------------- /http-server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/http-server/server.js -------------------------------------------------------------------------------- /identity.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/identity.hhs -------------------------------------------------------------------------------- /identity_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/identity_test.hhs -------------------------------------------------------------------------------- /inv.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/inv.hhs -------------------------------------------------------------------------------- /iqr.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/iqr.hhs -------------------------------------------------------------------------------- /iqr_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/iqr_test.hhs -------------------------------------------------------------------------------- /is_diag.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_diag.hhs -------------------------------------------------------------------------------- /is_diag_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_diag_test.hhs -------------------------------------------------------------------------------- /is_local_max.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_local_max.hhs -------------------------------------------------------------------------------- /is_local_max_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_local_max_test.hhs -------------------------------------------------------------------------------- /is_local_min.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_local_min.hhs -------------------------------------------------------------------------------- /is_local_min_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_local_min_test.hhs -------------------------------------------------------------------------------- /is_missing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_missing.hhs -------------------------------------------------------------------------------- /is_missing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_missing_test.hhs -------------------------------------------------------------------------------- /is_number.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_number.hhs -------------------------------------------------------------------------------- /is_symmetric.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_symmetric.hhs -------------------------------------------------------------------------------- /is_symmetric_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_symmetric_test.hhs -------------------------------------------------------------------------------- /is_tril.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_tril.hhs -------------------------------------------------------------------------------- /is_tril_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_tril_test.hhs -------------------------------------------------------------------------------- /is_triu.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_triu.hhs -------------------------------------------------------------------------------- /is_triu_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/is_triu_test.hhs -------------------------------------------------------------------------------- /lsolve.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/lsolve.hhs -------------------------------------------------------------------------------- /lsolve_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/lsolve_test.hhs -------------------------------------------------------------------------------- /lu.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/lu.hhs -------------------------------------------------------------------------------- /lu_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/lu_test.hhs -------------------------------------------------------------------------------- /lusolve.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/lusolve.hhs -------------------------------------------------------------------------------- /lusolve_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/lusolve_test.hhs -------------------------------------------------------------------------------- /magic.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/magic.hhs -------------------------------------------------------------------------------- /magic_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/magic_test.hhs -------------------------------------------------------------------------------- /max.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/max.hhs -------------------------------------------------------------------------------- /mean.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/mean.hhs -------------------------------------------------------------------------------- /mean_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/mean_test.hhs -------------------------------------------------------------------------------- /median.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/median.hhs -------------------------------------------------------------------------------- /median_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/median_test.hhs -------------------------------------------------------------------------------- /min.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/min.hhs -------------------------------------------------------------------------------- /mink.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/mink.hhs -------------------------------------------------------------------------------- /mink_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/mink_test.hhs -------------------------------------------------------------------------------- /missing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/missing.hhs -------------------------------------------------------------------------------- /missing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/missing_test.hhs -------------------------------------------------------------------------------- /multinomial.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/multinomial.hhs -------------------------------------------------------------------------------- /multinomial_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/multinomial_test.hhs -------------------------------------------------------------------------------- /ndim.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/ndim.hhs -------------------------------------------------------------------------------- /ndim_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/ndim_test.hhs -------------------------------------------------------------------------------- /normalize.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/normalize.hhs -------------------------------------------------------------------------------- /normalize_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/normalize_test.hhs -------------------------------------------------------------------------------- /pascal.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/pascal.hhs -------------------------------------------------------------------------------- /pascal_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/pascal_test.hhs -------------------------------------------------------------------------------- /percentile.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/percentile.hhs -------------------------------------------------------------------------------- /percentile_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/percentile_test.hhs -------------------------------------------------------------------------------- /quadratic_equation.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/quadratic_equation.hhs -------------------------------------------------------------------------------- /quadratic_equation_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/quadratic_equation_test.hhs -------------------------------------------------------------------------------- /quantile.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/quantile.hhs -------------------------------------------------------------------------------- /quantile_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/quantile_test.hhs -------------------------------------------------------------------------------- /quartic_equation.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/quartic_equation.hhs -------------------------------------------------------------------------------- /quartic_equation_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/quartic_equation_test.hhs -------------------------------------------------------------------------------- /reshape.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/reshape.hhs -------------------------------------------------------------------------------- /reshape_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/reshape_test.hhs -------------------------------------------------------------------------------- /resize.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/resize.hhs -------------------------------------------------------------------------------- /resize_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/resize_test.hhs -------------------------------------------------------------------------------- /rmmissing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/rmmissing.hhs -------------------------------------------------------------------------------- /rmmissing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/rmmissing_test.hhs -------------------------------------------------------------------------------- /rms.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/rms.hhs -------------------------------------------------------------------------------- /rms_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/rms_test.hhs -------------------------------------------------------------------------------- /shape.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/shape.hhs -------------------------------------------------------------------------------- /smooth.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/smooth.hhs -------------------------------------------------------------------------------- /smooth_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/smooth_test.hhs -------------------------------------------------------------------------------- /standard_missing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/standard_missing.hhs -------------------------------------------------------------------------------- /standard_missing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/standard_missing_test.hhs -------------------------------------------------------------------------------- /sum.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/sum.hhs -------------------------------------------------------------------------------- /test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/test.hhs -------------------------------------------------------------------------------- /toeplitz.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/toeplitz.hhs -------------------------------------------------------------------------------- /trace.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/trace.hhs -------------------------------------------------------------------------------- /trace_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/trace_test.hhs -------------------------------------------------------------------------------- /transpose.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/transpose.hhs -------------------------------------------------------------------------------- /transpose_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/transpose_test.hhs -------------------------------------------------------------------------------- /usolve.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/usolve.hhs -------------------------------------------------------------------------------- /usolve_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/usolve_test.hhs -------------------------------------------------------------------------------- /vander.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/vander.hhs -------------------------------------------------------------------------------- /vander_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/math/HEAD/vander_test.hhs --------------------------------------------------------------------------------