March 2014 update

This commit is contained in:
Ingy döt Net 2014-04-02 16:56:35 +00:00
parent 09687c4926
commit a25938f123
1846 changed files with 21876 additions and 5203 deletions

View file

@ -7,14 +7,9 @@ matprod[a is array, b is array] :=
b_col = length[b]-1
for row = 0 to a_row
{
for col = 0 to b_col
{
for inc = 0 to a_col
{
c@row@col = c@row@col + (a@row@inc * b@inc@col)
}
}
}
return c
}