From dbe890237d2a8305d76f3e1fcc544c3a9e1178a3 Mon Sep 17 00:00:00 2001 From: daslu Date: Fri, 29 Nov 2024 17:37:26 +0200 Subject: [PATCH] typo --- notebooks/noj_book/fastmath_matrix_intro.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/noj_book/fastmath_matrix_intro.clj b/notebooks/noj_book/fastmath_matrix_intro.clj index ef2774d..d071808 100644 --- a/notebooks/noj_book/fastmath_matrix_intro.clj +++ b/notebooks/noj_book/fastmath_matrix_intro.clj @@ -48,7 +48,7 @@ ;; E.g., we may add a notion of magnitude of vectors, so called *norm*. ;; When we represent vectors as arrays of numbers, one standard way to define -;; a norm is to compute the corresponding points from zero. +;; a norm is to compute the distance of the corresponding points from zero. (vec/mag (vec/->Vec2 3 4)) @@ -177,7 +177,7 @@ ;; ### Multiplying by a matrix is a linear transformation -;; We still need to explain what linear transformations are, +;; We still need to explain what linear transformations are, ;; and how they can be implemented with matrices. ;; ## Special cases