search for: w_r

Displaying 3 results from an estimated 3 matches for "w_r".

Did you mean: _r
2005 Jan 19
1
Should NEVER happen; please bug.report() [mkCLOSXP] (PR#7535)
I'm probably not using the function right, but anyway, the program said: "please bug.report." > w_R.f1=function(PR,Pc) return (Pc*PR^3) > > w_R.f2=function(PR,Pc) return (Pc*PR) > > w_R.fc=c(w_R.f1,w_R.f2) > w_R.fc[2] [[1]] function(PR,Pc) return (Pc*PR) > > RSD(type=3, + gparP=gpar(col="red"), + gparD=gpar(fill=FALSE,col=FALSE), + gparL=gpar(col="red",lw...
2009 Nov 23
3
Translation from R codes to SAS.
my teachers doesnt understand R and I don't know how to use SAS. Anyone interested in translating my codes to test whether your SAS codes are as good as R??? I can test it on SAS codes once you have translated it .... regards:working: -- View this message in context: http://old.nabble.com/Translation-from-R-codes-to-SAS.-tp26486117p26486117.html Sent from the R help mailing list
2009 Nov 26
1
Does nargin and nargout work with R functions?
...ete. Thanks again for all the feedback and insights. bode<-function(sys, w, outputs, inputs, plot_style) { # ... if (nargin < 1 || nargin > 5) { print("This works") } if (nargout < 1) { print("This also works") } return(list(mag_r, phase_r, w_r)) }