Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
6
Task/Map-range/F-Sharp/map-range.fs
Normal file
6
Task/Map-range/F-Sharp/map-range.fs
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
let map (a1: float) (a2: float) (b1: float) (b2: float) (s: float): float =
|
||||
b1 + (s - a1) * (b2 - b1) / (a2 - a1)
|
||||
|
||||
let xs = [| for i in 0..10 -> map 0.0 10.0 -1.0 0.0 (float i) |]
|
||||
|
||||
for x in xs do printfn "%f" x
|
||||
Loading…
Add table
Add a link
Reference in a new issue