Files
ImportExcel/Examples/Plot/PlotCos.ps1

4 lines
117 B
PowerShell

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