From 1aeeab06ceea3245cc31f49669d430fe63ce66a4 Mon Sep 17 00:00:00 2001 From: Didictateur <105631786+Didictateur@users.noreply.github.com> Date: Sun, 22 Oct 2023 16:49:40 +0200 Subject: [PATCH] Update Matrix.md --- docs/Matrix.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Matrix.md b/docs/Matrix.md index 527dc04..0a8ae61 100644 --- a/docs/Matrix.md +++ b/docs/Matrix.md @@ -16,14 +16,14 @@ Matrix(l: list[list[complexe]]) ### Methodes -- __init__(self, l: list[list[complex]]=[]) -> None +- ```__init__(self, l: list[list[complex]]=[]) -> None``` initiates the matrix -- __mul__(self, __value: "Matrix") -> Matrix +- ```__mul__(self, __value: "Matrix") -> Matrix``` defines the natural multiplication as the Koeneger product for matrices -- __apply(self, x: list[complex]) -> list[complex] +- ```__apply(self, x: list[complex]) -> list[complex]``` takes a list to represent a vector in a colonne, and return the proctuct of the matrix by this vector