Post Reply 
Assemble matrices in spreadsheet
10-11-2014, 04:46 PM
Post: #1
Assemble matrices in spreadsheet
I have 4 matrices 2x2 in the spreadsheet. I wonder if there is any way to assemble them forming one matrix of 4x4, for them inverse it.

Or if there is any way to do that in the main menu.
Find all posts by this user
Quote this message in a reply
10-11-2014, 07:55 PM (This post was last modified: 10-11-2014 07:56 PM by Helge Gabert.)
Post: #2
RE: Assemble matrices in spreadsheet
In CAS (is this what you call "main menu")?

CONCAT(M1,M2) -> M5
CONCAT(M3,M4) -> M6

mat2list(M5) -> L1
mat2list(M6) -> L2

CONCAT(L1,L2) -> L3

list2mat(L3,4) -> M7

M7^-1 -> M8

There may be a more elegant way to do this, however.
Find all posts by this user
Quote this message in a reply
10-11-2014, 08:53 PM
Post: #3
RE: Assemble matrices in spreadsheet
Thanks! It helped me a lot.
A very ingenious way.
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)