Module:Infobox AFDO
- This module should not be invoked directly; use its corresponding template instead: Template:Infobox AFDO.
Generates an infobox providing information about a given arithmetic frequency division of the octave.
| Introspection summary for Module:Infobox AFDO | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
| ||||||||||||
No function descriptions were provided. The Lua code may have further information.
local p = {}
local infobox = require('Module:Infobox')
function p.infobox_AFDO(frame)
local steps = frame.args['steps']
local infobox_data = {}
table['step size'] = 1/steps
local result = infobox.build(
'<- [[' .. (steps - 1).. 'afdo]]' .. '[[' .. steps .. 'afdo]]' .. '[[' .. (steps + 1).. 'afdo]] ->',
infobox_data
)
return result
end
return p