Fix demo docs

This commit is contained in:
gingerBill
2024-01-28 21:39:18 +00:00
parent e57224d6e4
commit d95c28f41b
+3 -3
View File
@@ -2519,7 +2519,7 @@ matrix_type :: proc() {
// This is because matrices are stored as values (not a reference type), and thus operations on them will // This is because matrices are stored as values (not a reference type), and thus operations on them will
// be stored on the stack. Restricting the maximum element count minimizing the possibility of stack overflows. // be stored on the stack. Restricting the maximum element count minimizing the possibility of stack overflows.
// Built-in Procedures (Compiler Level) // 'intrinsics' Procedures (Compiler Level)
// transpose(m) // transpose(m)
// transposes a matrix // transposes a matrix
// outer_product(a, b) // outer_product(a, b)
@@ -2540,13 +2540,13 @@ matrix_type :: proc() {
// conj(x) // conj(x)
// conjugates the elements of a matrix for complex element types only // conjugates the elements of a matrix for complex element types only
// Built-in Procedures (Runtime Level) (all square matrix procedures) // Procedures in "core:math/linalg" and related (Runtime Level) (all square matrix procedures)
// determinant(m) // determinant(m)
// adjugate(m) // adjugate(m)
// inverse(m) // inverse(m)
// inverse_transpose(m) // inverse_transpose(m)
// hermitian_adjoint(m) // hermitian_adjoint(m)
// matrix_trace(m) // trace(m)
// matrix_minor(m) // matrix_minor(m)
} }