RosettaCodeData/Task/Gamma-function/PowerShell/gamma-function.ps1

4 lines
178 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
Add-Type -Path "C:\Program Files (x86)\Math\MathNet.Numerics.3.12.0\lib\net40\MathNet.Numerics.dll"
1..20 | ForEach-Object {[MathNet.Numerics.SpecialFunctions]::Gamma($_ / 10)}