montecarlo2012
Well-known Member
- Joined
- Jan 26, 2011
- Messages
- 985
- Office Version
- 2010
- Platform
- Windows
Hello all
working on Y = x^2
until here I get
all the values of the quadratic function, true
the next side of the graph is what I don't get
I know the other side I have to figure out the pattern from this values
thats the help I need. Please.
thanks.
working on Y = x^2
VBA Code:
Sub h()
n = 36
For i = 1 To 36
For j = 1 To n
If j = i ^ 2 Then
Cells(i, j) = "+"
End If
Next
Next
End Sub
all the values of the quadratic function, true
the next side of the graph is what I don't get
I know the other side I have to figure out the pattern from this values
thats the help I need. Please.
thanks.