search for: turnpolartoy

Displaying 2 results from an estimated 2 matches for "turnpolartoy".

Did you mean: turnpolartox
2017 Jun 25
2
Writing my 3D plot function
...dinates legends that do not help on reading my Figure. You can help me by executing the code below? require("rgls") degreeToRadian<-function(degree){? return ? (0.01745329252*degree)} turnPolarToX<-function(Amplitude,Coordinate){? return (Amplitude*cos(degreeToRadian(Coordinate)))} turnPolarToY<-function(Amplitude,Coordinate){? return (Amplitude*sin(degreeToRadian(Coordinate)))} # Putting the first circle on 3d space. Circle of radius 1X1<-turnPolarToX(1,1:360)Y1<-turnPolarToY(1,1:360)Z1<-rep(0,360) # Putting the second circle on 3d space. Circle of radius 1X2<-turnPolarToX...
2017 Jun 25
0
Writing my 3D plot function
...help >on reading my Figure. You can help me by executing the code below? > >require("rgls") >degreeToRadian<-function(degree){? return ? (0.01745329252*degree)} >turnPolarToX<-function(Amplitude,Coordinate){? return >(Amplitude*cos(degreeToRadian(Coordinate)))} >turnPolarToY<-function(Amplitude,Coordinate){? return >(Amplitude*sin(degreeToRadian(Coordinate)))} ># Putting the first circle on 3d space. Circle of radius >1X1<-turnPolarToX(1,1:360)Y1<-turnPolarToY(1,1:360)Z1<-rep(0,360) ># Putting the second circle on 3d space. Circle of radius >...