search for: laie

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

Did you mean: laid
2009 Jul 15
0
Starting RCmdr from the Commandline (and a shortcut) in Windows
...gularly does not start Rcmdr, which is what I wanted! I hope someone else may find this useful! -Scott ***************************************************************** Scott K. Hyde Assistant Professor of Statistics and Mathematics College of Math and Sciences Brigham Young University -- Hawaii Laie, HI 96762 [[alternative HTML version deleted]]
2009 Jun 03
3
Return variable assignments from a function
I'd like to perform return variable assignments like matlab. For example, the following function would return A, B, and c to the script that called it. ================================= function [A,B,c] = simple(m,n) A=[ 3 2; 3 3] B=m c=1:n ================================= I'd like to do similar assignments in R, but I seem to be able to only return one variable. I tried to use a