Module:Temperament data: Difference between revisions
Jump to navigation
Jump to search
CompactStar (talk | contribs) No edit summary |
CompactStar (talk | contribs) No edit summary |
||
Line 15: | Line 15: | ||
return result | return result | ||
end | end | ||
-- Moore-Penrose pseudoinverse | |||
local function pinv()end | |||
local function get_cte_error() | local function get_cte_error() |
Revision as of 17:00, 28 July 2023
Note: Do not invoke this module directly; use the corresponding template instead: Template:Temperament data.
local rat = require('Module:Rational')
local p = {}
local function matmul(a, b)
local result = {}
for i = 1, #a do
result[i] = {}
for j = 1, #(b[1]) do
result[i][j] = 0
for k = 1, #(a[1]) do
result[i][j] = result[i][j] + a[i][k] * b[k][j]
end
end
end
return result
end
-- Moore-Penrose pseudoinverse
local function pinv()end
local function get_cte_error()
end
return p