Co pocita fce`linspace`?
Open
- Dominant language
- Elixir
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
```elixir
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)
end
```
Proc 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?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.