Displaying 7 results from an estimated 7 matches for "andre_mikulec".
2017 Sep 09
1
list subselect by name ?
..."
[20] "T" "U" "V" "W" "X" "Y" "Z"
> str( list(letters=letters, LETTERS=LETTERS)???????????????????? )
List of 1
$ LETTERS: chr [1:26] "A" "B" "C" "D" ...
Thanks,
Andre Mikulec
Andre_Mikulec at Hotmail.com
[[alternative HTML version deleted]]
2013 Apr 10
3
windows compile R from source, where do I put the Tcl directory?
...n file included from init.c:22:0:
tcltk.h:23:17: fatal error: tcl.h: No such file or directory
compilation terminated.
make[4]: *** [init.o] Error 1
make[3]: *** [mksrc-win2] Error 1
make[2]: *** [all] Error 2
make[1]: *** [R] Error 1
make: *** [all] Error 2
Please, help.
Thank you.
Andre Mikulec
Andre_Mikulec at Hotmail.com
2013 Apr 11
2
Trying to make DEBUG=T a debug version of R
....
src\gnuwin32>make clean
src\gnuwin32>make DEBUG=T?
In the output, I see many
-O3 flags
I do not see any
?-g -O0 flags?
which ( I believe/I think ) that is what I need to debug R in gdb.
What is the proper way to 'make' a 'Debug version of R'?
Thank you,
Andre Mikulec
Andre_Mikulec at Hotmail.com
2019 Feb 16
3
Trying to compile R 3.5.2 - 32 bit R - on Windows 10 64 bit - with ICU support
Hi,
I am trying to compile R with ICU support.
I am following
https://cran.r-project.org/doc/manuals/R-admin.html#Building-from-source
I have downloaded and extracted
https://www.stats.ox.ac.uk/pub/Rtools/goodies/ICU_531.zip
to
W:\R-3.5._\App\R-Portable\ICU
I have modified MkRules.local
# set to use ICU
USE_ICU = YES
# path to parent of ICU headers
ICU_PATH = w:/R-3.5._/App/R-Portable/ICU
I
2014 Sep 15
1
Debug an R windows (Fortran) DLL within R with gdb?
...-----------------------------
? ? ? SUBROUTINE NGCD(NA, NB, NGCDO)?
? ? ? ? IA = NA
? ? ? ? IB = NB
? ? 1 ? IF (IB.NE.0) THEN
? ? ? ? ? ITEMP = IA
? ? ? ? ? IA = IB
? ? ? ? ? IB = MOD(ITEMP, IB)
? ? ? ? ? GOTO 1
? ? ? ? END IF
? ? ? ? NGCDO = IA ?
? ? ? ? RETURN
? ? ? END
Thank you,
Andre Mikulec
Andre_Mikulec at Hotmail.com
2017 Feb 24
1
Debugging tools and practices in Windows?
On Thu, Feb 23, 2017 at 7:49 PM, Tomas Kalibera <tomas.kalibera at gmail.com>
wrote:
> The R for Windows FAQ suggests "make DEBUG=T" and has some more hints
> https://cran.r-project.org/bin/windows/base/rw-FAQ.html
>
> Tomas
>
>
>
> On 02/23/2017 08:10 PM, Javier Luraschi wrote:
>
>> Right, I'm talking about C code.
>>
>> Do you
2019 Feb 02
1
Set the number of threads using openmp with .Fortran?
I got this to work on Linux but it is not working on Windows. *My
understanding is that this should also work on windows, is that correct?*
If so, what should I do? differently?
To get it to work on Linux, I modified my R script as follows:
#' OpenMP Hello World
#'
#' @param nthreads The number of threads that you want to use
#' @example
#' hello(nthreads=2)
#' @export