I try to plot sin wave in Xcode 7 playground. I have the following code (got from this post):
import XCPlayground
let sineArraySize = 64
let frequency1 = 4.0
let phase1 = 0.0
let amplitude1 = 2.0
let sineWave = (0..<sineArraySize).map {
amplitude1 * sin(2.0 * M_PI / Double(sineArraySize) * Double($0) * frequency1 + phase1)
}
func plotArrayInPlayground<T>(arrayToPlot:Array<T>, title:String) {
for currentValue in arrayToPlot {
XCPCaptureValue(title, value: currentValue)
}
}
plotArrayInPlayground(sineWave, title: "Sine wave 1")
And the Assistant Editor
shows me this:
But i want a normal graph (with axis, etc.) like this:
How can i achieve that?