Added Get-Range, New-Plot and Plot Cos example

This commit is contained in:
dfinke
2016-03-18 09:36:18 -04:00
parent 0058f69844
commit b777c06838
7 changed files with 175 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
$plt = New-Plot
$plt.Plot((Get-Range 0 5 .02|%{[math]::Cos(2*[math]::pi*$_)}))
$plt.SetChartSize(800,300)
$plt.Show()