Expand a few aliases

This commit is contained in:
François-Xavier Cat
2018-10-01 17:01:15 -07:00
parent d8bd5a8cb6
commit 1951a61699
14 changed files with 18 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
try {. $PSScriptRoot\..\..\LoadPSD1.ps1} catch {}
$plt = New-Plot
$plt.Plot((Get-Range 0 5 .02|%{[math]::Cos(2*[math]::pi*$_)}))
$plt.Plot((Get-Range 0 5 .02|Foreach-Object {[math]::Cos(2*[math]::pi*$_)}))
$plt.SetChartSize(800,300)
$plt.Show()