(我仍在使用 F# 中的 度量单位)
我在制作采用“类型化”浮点数的“通用”函数时遇到问题。
以下模型类旨在根据因素“c”密切关注位置的累积误差。编译器不喜欢我在类型的主体中说 0.<'a> (“度量单位文字中的意外类型参数”)。
///Corrects cumulative error in position based on s and c
type Corrector(s_init:float<'a>) =
let deltaS ds c = sin (ds / c) //incremental error function
//mutable values
let mutable nominal_s = s_init
let mutable error_s = 0.<'a> //<-- COMPILER NO LIKE
///Set new start pos and reset error to zero
member sc.Reset(s) =
nominal_s <- s
error_s <- 0.<'a> //<-- COMPILER NO LIKE
///Pass in new pos and c to corrector, returns corrected s and current error
member sc.Next(s:float<'a>, c:float<'a>) =
let ds = s - nominal_s //distance since last request
nominal_s <- s //update nominal s
error_s <- error_s + (deltaS ds c) //calculate cumulative error
(nominal_s + error_s, error_s) //pass back tuple
我相信,另一个相关问题仍然与“通用”功能有关。
在下面的代码中,我要做的是创建一个函数,该函数将采用任何类型的浮点数的#seq 并将其应用于仅接受“香草”浮点数的函数。第三行给出了“值限制”错误,我看不到任何出路。(删除 # 可以解决问题,但我想避免为列表、序列、数组等编写相同的东西。)
[<Measure>] type km //define a unit of measure
let someFloatFn x = x + 1.2 //this is a function which takes 'vanilla' floats
let MapSeqToNonUnitFunction (x:#seq<float<'a>>) = Seq.map (float >> someFloatFn) x
let testList = [ 1 .. 4 ] |> List.map float |> List.map ((*) 1.0<km>)
MapSeqToNonUnitFunction testList