March 2014 update
This commit is contained in:
parent
09687c4926
commit
a25938f123
1846 changed files with 21876 additions and 5203 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue