|
-
Jan 19th, 2005, 12:40 PM
#1
Thread Starter
Junior Member
sin cos and tan graphs
hey guys im trying to make sum y=sin, cos and tan x graphs but i dont no how. im trying a method where i use for statements to draw graphs but im getting sum wild results. heres my code
Private Sub cmdSin_Click()
For z = -360 To 360 Step 0.1
x = z
y = 1000 * Sin(x * 1000)
picGraph.Circle (xOrigin + x, yOrigin + y), 1
Next z
End Sub
my teacher insists that he says the graph. but i dont c nething.
thanks for the help
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|