This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DELAY=0 # increase this if printing of matrices should be slower | |
echo "This script takes two matrices, henceforth called A and B, | |
and returns their product, AB." | |
read -p "Number of rows of matrix A: " arows | |
read -p "Number of columns of matrix A: " acols |
NewerOlder