From 2f38326badcb0527b670ed6289656a7e87b8c046 Mon Sep 17 00:00:00 2001 From: Tiago Oliva Date: Wed, 31 Mar 2021 11:13:46 -0300 Subject: [PATCH] Typo in Matrix Generation `randn` was written both times for `mA` and `mB`. Perhaps `mB` should refer to `rand` instead of `randn`. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 52f160c..03cdb90 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ This repository will be extended as more functions are added to the [JuliaMatlab Generation of a Square Matrix using the `randn()` function and `rand()`. - * MATLAB Code - `mA = randn(matrixSize, matrixSize)`, `mB = randn(matrixSize, matrixSize)`. - * Julia Code - `mA = randn(matrixSize, matrixSize)`, `mB = randn(matrixSize, matrixSize)`. + * MATLAB Code - `mA = randn(matrixSize, matrixSize)`, `mB = rand(matrixSize, matrixSize)`. + * Julia Code - `mA = randn(matrixSize, matrixSize)`, `mB = rand(matrixSize, matrixSize)`. ![Matrix Generation][01]