From 2d9ccdee2ff65049cf2f56672763fe688c558a07 Mon Sep 17 00:00:00 2001 From: fszewczyk <60960225+fszewczyk@users.noreply.github.com> Date: Thu, 9 Nov 2023 14:04:26 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20fszewczy?= =?UTF-8?q?k/shkyera-grad@a6e6b1af14a0a9ba130730441dd1a667e0b8d752=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- md_docs_tutorials_Cheatsheet.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md_docs_tutorials_Cheatsheet.html b/md_docs_tutorials_Cheatsheet.html index b6b340a..6cd2624 100644 --- a/md_docs_tutorials_Cheatsheet.html +++ b/md_docs_tutorials_Cheatsheet.html @@ -104,7 +104,7 @@

Vectors

Here are all the available operations using Vector:

auto a = Vector<float>::of(1, 2, 3);
-
auto b = Vector<float>::of({2, 3, 4}); // a[i] == b[i];
+
auto b = Vector<float>::of({2, 3, 4});
a.size() // 3
a.dot(b) // 1 * 2 + 2 * 3 + 3 * 4 = 20