Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Advanced Math (Matrix * Vector)

Hello.


In Numbers (iWork '08), is there any way to calculate the elements resulting from multiplying a Matrix (square table) to a Vector (single-column table) in another Vector (single-column table)?


I'm currently multiplying term by term, but it's a pain for lots of data. There must be a smarter way to do that.

Numbers '08-OTHER, Mac OS X (10.7.3)

Posted on May 8, 2012 1:35 PM

Reply
Question marked as Best reply

Posted on May 8, 2012 2:02 PM

Numbers doesn't support Matrix math, not in either Numbers 08 or Numbers 09.


Jerry

16 replies

May 8, 2012 3:03 PM in response to Wayne Contello

If the answer to my previous question is "Yes", then you can use a method like this:

User uploaded file


I am multiplying a 1 dimensional array times a two dimensional array resulting in a two dimensional array.


To make this easier I transpose the 2D array, then multiply each row in table "Vector 1" by the corresponding row in each column of the table "Vector 2". This is stored in the table "Result Transposed". Then I un-transpose and store in the table "Result".


To do this we can start with transposing the table "Vector 2" into the table "Vector 2 Transposed" (the table with the highlighted cell in the image above):


A1=OFFSET(Vector 2 :: $A$1, COLUMN()-1, ROW()-1, 1, 1)

select A1 and fill to the right

select A1 thru J1 and fill down


Now let's put together the table "Result Transposed":

A1=Vector 1 :: $A1*Vector 2 Transposed :: A1

select A1 and fill DOWN

now select A1 through A10 and fill to the right


Now let's un trasnpose the data in table "Result Transposed" and store in the table "Result":

in table "Result":

A1=OFFSET(Result Transposed :: $A$1, COLUMN()-1, ROW()-1, 1, 1)

select A1 and fill to the right

now select A1 thru J1 and fill down

May 8, 2012 5:30 PM in response to Wayne Contello

That sure is a better way, but we're not done yet.


You got close; my intention was to multiply what you called "Vector 1" with "Vector 2" (a Matrix, although mathematically speaking you would need to invert the terms order) resulting in another "Vector 3" (which would be a single-column table; each line the sum of all numbers in a line of "Result").


Your method involves creating buffer/auxiliary tables... would there be a way to merge all these operations within a single formula, on the destination cell?

May 8, 2012 5:53 PM in response to MVittiS

With regards to:

You got close; my intention was to multiply what you called "Vector 1" with "Vector 2" (a Matrix, although mathematically speaking you would need to invert the terms order) resulting in another "Vector 3" (which would be a single-column table; each line the sum of all numbers in a line of "Result").


Please be specific with what you would like similar to the v[0]*W[0, 1]...


The aux tables can be combined but I do not like doing that because:

1) it makes reading what you did more difficult

2) it make debugging more difficult


As I indicated you can hide the aux tables so you won't see them.

May 8, 2012 6:01 PM in response to Wayne Contello

Ok. Let A[10] be a Vector, and B[10,10] a Matrix. B*A=C, wich is a Vector of type C[10]. So (in [Column, Line] notation) :


C[0]=A[0]*B[0,0]+A[1]*B[1,0]+A[2]*B[2,0] (...) A[9]*B[9,0]

C[1]=A[0]*B[0,1]+A[1]*B[1,1]+A[2]*B[2,1] (...) A[9]*B[9,1]

(...)

C[9]=A[0]*B[0,9]+A[1]*B[1,9]+A[2]*B[2,9] (...) A[9]*B[9,9]


That's exactly the operation I'm trying to accomplish; a classical, mathematically defined, Vector * Matrix operation, wich results into a Vector of size equal to the Matrix's height and can only be made if the Vector's size and the Matrix's width are equal.

May 8, 2012 6:18 PM in response to MVittiS

Gotta try LibreOffice Spreadsheets later. I didn't knew I could copy data without having to save a .csv file for exchanging values between them. That sure is handy.


As for now, I've (mostly) solved my problem by making a separate "scratch" table on which I can copy all the lines of the matrix, interleaved with the Vector's values, and obtain the results on a separate column nearby. The problem is that I cannot copy the data without Numbers trying to copy the formula too; I just want the values!

Currently I'm retyping the results onto the definite result table.


Everyone, thanks for the help.

May 8, 2012 7:43 PM in response to Wayne Contello

So based on your input I think you want something like this:

User uploaded file

the only difference is that the last table "Result" is now a single column with the formulas:

A1=SUM(Result Transposed :: A1:J1)

select A1 and fill down



you can make the final solution look like this by:

1) disabling the table name

2) sliding the aux tables under the table "Vector 2"


User uploaded file

May 8, 2012 8:04 PM in response to MVittiS

I should correct an error just found in trying to simplify the result:


The formula for the previous table "Result" should be:

A1=SUM(INDIRECT("Result Transposed :: "&CHAR(CODE("A")+ROW()-1)&"1:"&CHAR(CODE("A")+ROW()-1)&"10"))



select A1 and fill down.



Now there is a way without an aux table:

User uploaded file


the table "Result" is now:

A1=SUMPRODUCT(Vector 1 :: $A$1:$A$10, TRANSPOSE(Vector 2 :: A1:J1))


select A1 and fill down (no aux tables)

Advanced Math (Matrix * Vector)

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.