search for: yourscript

Displaying 20 results from an estimated 29 matches for "yourscript".

2019 Sep 11
4
Fw: Calling a LAPACK subroutine from R
...- > gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 > > LAPACK=$(R CMD config LAPACK_LIBS) > R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 > </mkso.sh> > > To load the dynamic library xdpbtrf.so change your script into this > > <yourscript> > dyn.load("xdpbtrf.so") > n <- 4L > phi <- 0.64 > AB <- matrix(0, 2, n) > AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1) > AB[2, -n] <- -phi > round(AB, 3) > > AB.ch <- .Fortran("xdpbtrf", kUPLO=1L, N = as.integer(n), >...
2004 Mar 04
4
Command Line Programs
Hi, I have recently started using R again (switched from MatLab) and have a question regarding programming. How can I set up a file that will run several lines of R code? For example, in Fortran and DOS this used to be done via a batch file, and in MatLab I would write the code and save it in a script file, e.g., Test.m. An example of what I am trying to do is the following:
2016 Nov 08
2
How to start a script to complete configuration
...e the first userland process started, have the console > for I/O, and run as root. At completion, restore the original > /sbin/init and reboot. Leave no traces behind. Do not document > your awful hack, others will use your words against you. :-) ... kernel parameter init=/root/yourscript https://www.kernel.org/doc/Documentation/kernel-parameters.txt -- LF
2019 Sep 11
4
Fw: Calling a LAPACK subroutine from R
Sorry for cross-posting, but I realized my question might be more appropriate for r-devel... Thank you, Giovanni ________________________________________ From: R-help <r-help-bounces at r-project.org> on behalf of Giovanni Petris <gpetris at uark.edu> Sent: Tuesday, September 10, 2019 16:44 To: r-help at r-project.org Subject: [R] Calling a LAPACK subroutine from R Hello R-helpers!
2007 Nov 14
2
executable script
Dear All, Apologies for this simple question and thanks in advance for any help given. I want to make from my .R script an .exe file. Is there any way to transfort my script to an autolaunch file? It means it runs the script by double clicking on it. p.s.: I'm using windows -- View this message in context: http://www.nabble.com/executable-script-tf4806651.html#a13751752 Sent from the R
2010 Mar 04
2
Running script with double-click
Hi, I need to be able to run an R script by double-clicking the file name in Windows. I've tried associating the .r extension with the different R .exe's in /bin but none seems to work. Some open R then close right away, and Rgui.exe gives the message ARGUMENT "/my/file.r" __ignored__ before opening a new, blank session. I've tried Google and looking in the R for
2011 Dec 14
3
R - Linux_SSH
Dear List, I am unsure if this is the correct list to post to, if it isn't I apologise. I am using SSH to access a Linux version of R on a remote computer as it offers more memory and processing power. The model will take 1-2 days to run, I am accessing R through Putty and when I close the connection and open R again, I am faced with a new session. As a Linux newbie, I was
2007 Oct 04
3
Setting up common drive w/letter?
I want to configure samba to produce a common area (i.e. /home/shared) as an assigned drive letter to all users. Thus, in addition to users logging into the domain and having an H: drive for their personal account, they will also get an S: drive (for example) for a common area. How do I configure this in smb.conf? Thanks. Scott
2019 Sep 12
1
Calling a LAPACK subroutine from R
...yntax-only -fimplicit-none -Wall src/*.f || exit 1 >>> LAPACK=$(R CMD config LAPACK_LIBS) >>> R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 >>> </mkso.sh> >>> To load the dynamic library xdpbtrf.so change your script into this >>> <yourscript> >>> dyn.load("xdpbtrf.so") >>> n <- 4L >>> phi <- 0.64 >>> AB <- matrix(0, 2, n) >>> AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1) >>> AB[2, -n] <- -phi >>> round(AB, 3) >>> AB.ch <- .Fortran("xdp...
2019 Sep 11
0
Fw: Calling a LAPACK subroutine from R
...ct syntax checking echo ---------------------- gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 LAPACK=$(R CMD config LAPACK_LIBS) R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 </mkso.sh> To load the dynamic library xdpbtrf.so change your script into this <yourscript> dyn.load("xdpbtrf.so") n <- 4L phi <- 0.64 AB <- matrix(0, 2, n) AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1) AB[2, -n] <- -phi round(AB, 3) AB.ch <- .Fortran("xdpbtrf", kUPLO=1L, N = as.integer(n), KD = 1L, AB = AB, LDAB = 2L, INFO...
2019 Sep 11
1
Fw: Calling a LAPACK subroutine from R
...> > > LAPACK=$(R CMD config LAPACK_LIBS) > > R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 > > </mkso.sh> > > > > To load the dynamic library xdpbtrf.so? change your script into this > > > > <yourscript> > > dyn.load("xdpbtrf.so") > > n <- 4L > > phi <- 0.64 > > AB <- matrix(0, 2, n) > > AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1) > > AB[2, -n] <- -phi > > round(AB, 3) > > > >...
2016 Nov 09
3
How to start a script to complete configuration
...t; for I/O, and run as root. At completion, restore the original > > > /sbin/init and reboot. Leave no traces behind. Do not document > > > your awful hack, others will use your words against you. > > > > > > > > :-) ... kernel parameter init=/root/yourscript > > > > https://www.kernel.org/doc/Documentation/kernel-parameters.txt > > > > -- > > LF > > > > _______________________________________________ > > CentOS mailing list > > CentOS at centos.org > > https://lists.centos.org/mailman/listinfo...
2019 Sep 12
0
Calling a LAPACK subroutine from R
...> gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 >> LAPACK=$(R CMD config LAPACK_LIBS) >> R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 >> </mkso.sh> >> To load the dynamic library xdpbtrf.so change your script into this >> <yourscript> >> dyn.load("xdpbtrf.so") >> n <- 4L >> phi <- 0.64 >> AB <- matrix(0, 2, n) >> AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1) >> AB[2, -n] <- -phi >> round(AB, 3) >> AB.ch <- .Fortran("xdpbtrf", kUPLO=1L, N = as.int...
2019 Sep 11
0
Fw: Calling a LAPACK subroutine from R
...plicit-none -Wall src/*.f || exit 1 > > > > LAPACK=$(R CMD config LAPACK_LIBS) > > R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 > > </mkso.sh> > > > > To load the dynamic library xdpbtrf.so change your script into this > > > > <yourscript> > > dyn.load("xdpbtrf.so") > > n <- 4L > > phi <- 0.64 > > AB <- matrix(0, 2, n) > > AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1) > > AB[2, -n] <- -phi > > round(AB, 3) > > > > AB.ch <- .Fortran("xdpbtrf", kU...
2019 Sep 12
2
Fw: Calling a LAPACK subroutine from R
...---- > gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 > > LAPACK=$(R CMD config LAPACK_LIBS) > R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 > </mkso.sh> > > To load the dynamic library xdpbtrf.so change your script into this > > <yourscript> > dyn.load("xdpbtrf.so") > n <- 4L > phi <- 0.64 > AB <- matrix(0, 2, n) > AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1) > AB[2, -n] <- -phi > round(AB, 3) > > AB.ch <- .Fortran("xdpbtrf", kUPLO=1L, N = as.integer(n), >...
2015 May 19
4
preexec and msdfs proxy
...omething no worky worky. So, that is why I am here. 'til then, Greg Enlow -- Greg Enlow grenlow at hk.mailbox.de On 19 May 2015, at 08:08, Daniel M?ller wrote: Just an idea: Why dont us msdfs just pointing to the netapp with ln -s msdfs: And in the smb.conf ex: [netapp] root preexec= yourscript path=yourpath msdfs root=yes EDV Daniel M?ller Leitung EDV Tropenklinik Paul-Lechler-Krankenhaus Paul-Lechler-Str. 24 72076 T?bingen Tel.: 07071/206-463, Fax: 07071/206-499 eMail: mueller at tropenklinik.de Internet: www.tropenklinik.de -----Urspr?ngliche Nachricht----- Von: samba-bounces...
2019 Sep 12
0
Fw: Calling a LAPACK subroutine from R
...CMD config LAPACK_LIBS) >>>>> R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 >>>>> </mkso.sh> >>>>> >>>>> To load the dynamic library xdpbtrf.so? change your script into this >>>>> >>>>> <yourscript> >>>>> dyn.load("xdpbtrf.so") >>>>> n <- 4L >>>>> phi <- 0.64 >>>>> AB <- matrix(0, 2, n) >>>>> AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1) >>>>> AB[2, -n] <- -phi >>>>>...
2016 Nov 08
0
How to start a script to complete configuration
...rted, have the console > > for I/O, and run as root. At completion, restore the original > > /sbin/init and reboot. Leave no traces behind. Do not document > > your awful hack, others will use your words against you. > > > > :-) ... kernel parameter init=/root/yourscript > > https://www.kernel.org/doc/Documentation/kernel-parameters.txt > > -- > LF > > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos >
2015 May 19
0
preexec and msdfs proxy
Just an idea: Why dont us msdfs just pointing to the netapp with ln -s msdfs: And in the smb.conf ex: [netapp] root preexec= yourscript path=yourpath msdfs root=yes EDV Daniel M?ller Leitung EDV Tropenklinik Paul-Lechler-Krankenhaus Paul-Lechler-Str. 24 72076 T?bingen Tel.: 07071/206-463, Fax: 07071/206-499 eMail: mueller at tropenklinik.de Internet: www.tropenklinik.de -----Urspr?ngliche Nachricht----- Von: samba-bounces...
2008 Dec 31
2
Execution of a .sce file through R
Dear R Users Does some has any idea about how to execute a scilab file(.sce file) from the Terminal in R. Any kind of guidance would be highly welcomed and appreciated. -- View this message in context: http://www.nabble.com/Execution-of-a-.sce-file-through-R-tp21227441p21227441.html Sent from the R help mailing list archive at Nabble.com.