Rank:: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 10/29/2004(UTC) Posts: 1,394 Location: Glastonbury, CT
Was thanked: 2 time(s) in 2 post(s)
|
This should work, could you explain what this code does? Code:Pivot:= LastValue(Lowest(LOW));
Rg:=(Sqrt((9 + 12* Pivot))+3)/6;
Inc:=Input("Enter Increment .",0,8,7);
St:=Input(" Enter Angular Shift Degrees.. ",-359,360,0);
T1:=If(Inc>0,(Power((((Rg+(1+St/360))*6) -3),2) -9)/12,Pivot);
T2:=If(Inc>1,(Power((((Rg+(2+St/360))*6) -3),2) -9)/12,Pivot);
T3:=If(Inc>2,(Power((((Rg+(3+St/360))*6) -3),2) -9)/12,Pivot);
T4:=If(Inc>3,(Power((((Rg+(4+St/360))*6) -3),2) -9)/12,Pivot);
T5:=If(Inc>4,(Power((((Rg+(5+St/360))*6) -3),2) -9)/12,Pivot);
T6:=If(Inc>5,(Power((((Rg+(6+St/360))*6) -3),2) -9)/12,Pivot);
T7:=If(Inc>6,(Power((((Rg+(7+St/360))*6) -3),2) -9)/12,Pivot);
T8:=If(Inc>7,(Power((((Rg+(8+St/360))*6) -3),2) -9)/12,Pivot);
T1;T2;T3;T4;T5;T6;T7;T8;
|