As I am a SCHEME beginner, I am having a tough time figuring out how to work with matrices.
I am unsure on how to do the following:
A) Given a matrix, return the dimensions of said matrix
EX:// '(2 3 4) (1 0 6)
should return (2.3) for 2 rows, three columns
B) Reverse the order of rows in a given matrix
EX:// given '((1 2) (3 5) (9 0))
the reverse should be '((9 0)(3 5)(1 2))
C) Same as part B but reverse order of columns instead
D) Reverse order of columns and rows
Thanks in advance! This would really mean a lot if someone could give any help at all!