-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
def linspace(min, max, step)
when is_number(min) and is_number(max) and is_integer(step) and min < max and 1 < step do
delta = :erlang.abs(max - min) / (step - 1)
Enum.reduce(1..(step - 1), [min], fn x, acc ->
acc ++ [min + x * delta]
end)
endProc je pouzit Enum.reduce/3 a pocetne narocne spojovani listu, kdyz lze pouzit Enum.map/2.
Co je vystupem teto fce, tedy co reprezentuje vraceny seznam?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels