search for: tcl

Displaying 20 results from an estimated 1913 matches for "tcl".

Did you mean: cl
2013 Jan 12
3
Cannot find Tcl library(Sort of OT)
Hey All, I'm trying to build Tux Racer. I get: checking for tcl8.5 library... no checking for tcl83 library... no checking for tcl8.2 library... no checking for tcl82 library... no checking for tcl8.0 library... no checking for tcl80 library... no checking for tcl library... no configure: error: Cannot find Tcl library The install manual says I may have to pas...
2010 Aug 12
2
accessing tcl variables within R and tcl
Dear R users, I have some troubles with dealing with tclObj objects. I try to explain it with a toy example: Say I define the following tcl procedure which just prints out each list element library(tcltk) .Tcl('proc test {myList} { foreach i $myList { puts stdout $i } }') and I call it with: > tcl('test',letters[1:5]...
2013 Sep 01
1
[PATCH] remove a duplicate tk function definition (and alphabetize)
'tkcoords' is defined twice (in the same way) in src/library/tcltk/R/Tk.R. Attached is a patch against r63780 that removes the duplicate definition and alphabetizes the functions. I've read that minor patches such as this should be sent to r-devel [1]. Scott [1] http://permalink.gmane.org/gmane.comp.lang.r.devel/33987 -- Scott Kostyshak Economics PhD C...
2013 Jul 18
1
[PATCH 02/11] drm/nv50/pm: Fix last timing register in NVA3+, fix typo in NV50
...;reg[1] = (e->tWR + 2 + (t->tCWL - 1)) << 24 | @@ -102,7 +108,9 @@ nv50_mem_timing_calc(struct drm_device *dev, u32 freq, e->tRCDWR << 8 | e->tRCDRD); - t->reg[4] = e->tUNK_13 << 8 | e->tUNK_13; + t->reg[3] = (tUnk_3_2 << 16) | (e->tCL - 1); + + t->reg[4] = (unk20 << 24 | unk21 << 16) | e->tUNK_13 << 8 | e->tUNK_13; t->reg[5] = (e->tRFC << 24 | max(e->tRCDRD, e->tRCDWR) << 16 | e->tRP); @@ -111,16 +119,16 @@ nv50_mem_timing_calc(struct drm_device *dev, u32 freq, if (P...
2009 Jan 15
1
About Tcl/Tk after command in R
Dear R-helpers, I have a problem with the tcl "after" instruction. When I send: > library(tcltk) Loading Tcl/Tk interface ... done > tcl("after",1000,cat("try tcl after\n")) try tcl after <Tcl> the tcl command works fine. Similarly, the tcl command: > tcl("after",1000,plot(rnorm(100)))...
2018 Jul 01
2
[PATCH nbdkit] Add Tcl plugin, for writing plugins in Tcl.
This lets you write simple plugins in Tcl. All the basic features of nbdkit are supported, but serious Tcl users will probably want to enhance the plugin further. Unfortunately Tcl as a language is not very well suited to handling binary data. It prefers to store binary data in UCS-2 strings, meaning that every second byte is wasted. A...
2003 Apr 17
2
R Install problems with Redhat 9 : "tcl.so" versus "tcl.so.0"
...m running Redhat 9. I'm assuming we have backward compatibility ? To continue, attemping to load R produces the following errors: [root at localhost temp]# rpm -ivh R-1.6.2-1.i386.rpm warning: R-1.6.2-1.i386.rpm: V3 DSA signature: NOKEY, key ID 97d3544e error: Failed dependencies: libtcl.so.0 is needed by R-1.6.2-1 libtk.so.0 is needed by R-1.6.2-1 OK, I understand this so far. So I go to http://rpmfind.net/linux/RPM/ to get the packages. Searching for "libtcl.so.0" shows me that's it's in the tcl package. The most current one from http://rpmfind.net/l...
2010 Aug 10
1
Adding Tcl source to an R package
Dear R Community, I'm writing an R package with a lot of Tcl and Tk code. I use the Tcl wrapper functions provided by the tcltk package if possible. However I also define "pure" Tcl functions. I so far defined them with the .Tcl function, for example (in R): .Tcl('proc test {a b} { return [expr {sqrt(pow($a,2)+pow($b,2))}] }') so that I...
2013 Apr 10
3
windows compile R from source, where do I put the Tcl directory?
Hi, I am trying to compile R from source on Windows. I am following the instructions here 3.1 Building from source 3 Installing R under Windows file:///F:/ProgramFiles/R/R-2.15.3/doc/manual/R-admin.html It only says,? " The Tcl/Tk support files are contained in Rtools30.exe and? available as .zips from http://www.stats.ox.ac.uk/pub/Rtools.? Please make sure you install the right version: there is a 32-bit? version and a 64-bit version. " Anyways, I collected the support files from here. http://www.stats.ox.ac.uk/pub...
2008 Aug 08
2
Tcl\tk not supported on this system
In trying to install the pbatR package, I was greeted with the error Error: package 'tcltk' does not have a name space Execution halted Directly installing the package tcltk2 returned the following error: Loading required package: tcltk Error in firstlib(which.lib.loc, package) : Tcl/Tk support is not available on this system I have seen from previous posts that tcl/tk m...
2016 Feb 27
2
Database left unlocked by Tcl bindings
...u, 25 Feb 2016 02:24:51 +0000, Olly Betts <olly at survex.com> wrote: > > > It's clearly not as simple as execl() always releasing the lock, but I > > > don't think we've ruled out the OS entirely yet - the above isn't > > > exactly equivalent to the Tcl code, as the two databases are created by > > > the same process in Tcl but different processes with simpleindex. > > > > but the same problem happens from two different Tcl processes - both > > succeed because there is no lock. > > Ah, OK - I missed that detail....
2012 Feb 20
3
Run function several times changing only one argument - without a loop
...1),ncol=5) colnames(Ee1)<-c("Lehrer","Lehrerinnen","Klassenkollegen","Klassenkolleginnen","Geschwister") par(las=1) par(mar=c(5,13,4,2)) barplot(Ee1,horiz=T,col="grey85",border="NA",xlim=c(0,100),axes=F) axis(2,pos=10, tick=T, tcl=F, labels=F,col="white") axis(2,pos=20, tick=T, tcl=F, labels=F,col="white") axis(2,pos=30, tick=T, tcl=F, labels=F,col="white") axis(2,pos=40, tick=T, tcl=F, labels=F,col="white") axis(2,pos=50, tick=T, tcl=F, labels=F,col="white") axis(2,pos=60, t...
2006 Mar 09
2
tcltk loading in R-2.2.1 from src
Hi, Having trouble loading tcltk in R 2.2.1 built from source. ./configure, make, make check, and make install run ok. > library(tcltk) Error in firstlib(which.lib.loc, package) : Tcl/Tk support is not available on this system Error in library(tcltk) : .First.lib failed for 'tcltk' even though it is liste...
2003 Feb 11
3
Tcl/Tk support is not available on this system.
I am trying to get R to run on a Red Hat 8 system, I am running R version 1.6.2 with Tcl/Tk version 8.3.5 installed. When I try to test R from the data_sets directory I get the error message; Error in firstlib(which.lib.loc, package) : Tcl/Tk support is not available on this system Error in fileBrowser(textToShow = "Choose one CDF file" , nSelect = 1, : tcl/tk library not a...
2003 Sep 05
1
Installing R on Red Hat Linux, Tcl/Tk
Hi, I've been trying to install R on Red Hat Linux 9 for some potential users of my R/TclTk application. I tried using the rpm for R 1.7.1 for Red Hat Linux 9. It told me that I needed: libtcl8.3.so so I looked for a binary release of Tcl 8.3.x on http://www.tcl.tk/software/tcltk/8.3.html but found that the link to the Tcl 8.3.x binaries pointed to ActiveTcl 8.4.x . I couldn't...
2018 Jul 06
0
Re: [PATCH nbdkit] Add Tcl plugin, for writing plugins in Tcl.
On 07/01/2018 09:59 AM, Richard W.M. Jones wrote: > This lets you write simple plugins in Tcl. All the basic features of > nbdkit are supported, but serious Tcl users will probably want to > enhance the plugin further. > > Unfortunately Tcl as a language is not very well suited to handling > binary data. It prefers to store binary data in UCS-2 strings, > meaning that e...
2013 Jul 18
0
[PATCH 02/11] drm/nv50/pm: Fix last timing register in NVA3+, fix typo in NV50
...;tCWL - 1)) << 24 | > @@ -102,7 +108,9 @@ nv50_mem_timing_calc(struct drm_device *dev, u32 freq, > e->tRCDWR << 8 | > e->tRCDRD); > > - t->reg[4] = e->tUNK_13 << 8 | e->tUNK_13; > + t->reg[3] = (tUnk_3_2 << 16) | (e->tCL - 1); > + > + t->reg[4] = (unk20 << 24 | unk21 << 16) | e->tUNK_13 << 8 | e->tUNK_13; > > t->reg[5] = (e->tRFC << 24 | max(e->tRCDRD, e->tRCDWR) << 16 | e->tRP); > > @@ -111,16 +119,16 @@ nv50_mem_timing_calc(struct d...
2015 Sep 28
2
Link R with Tcl 8.6 on Windows
Dear all, I am working on an R package intended for CRAN that requires Tcl version 8.6 because of the TclOO tcl extension and the -angle option for canvas text items. R for Windows currently still ships with Tcl 8.5. Does anyone have experience with linking R under Windows to a Tcl interpreter of version 8.6? When I link R 3.2.2 (installed from the binary on Windows 8)...
2012 Feb 06
0
How do I get the CEM (coarsened exact matching) package to run?
...Book Pro with OS X 10.6.8. When I try to load library(cem) and run any function, R crashes. Any suggestions as to why this is? Thanks in advance. I think the problem is that I don't have all the "infrastructure" I need to run CEM, but I have no clue what to do either... #Do I have tcltk (I have no clue what that is) capabilities("tcltk") tcltk TRUE #Installing cem trying URL 'http://r.iq.harvard.edu/src/contrib/cem_1.0.218.tar.gz' Content type 'application/x-gzip' length 886578 bytes (865 Kb) opened URL ==========================================...
1999 Jun 30
1
New packages (tcl/tk <-> R glue + Visual Tcl)
[Reposted by R-announce-owner because of R-announce protection. Guido is subscribed under a different E-mail..] I have made available in the 'Contributed R code | Devel' section of CRAN (in this moment only at Wien) two new packages: 'tcltk': this package let to create and use tcl/tk interpreters from R. The tcl interpreters have an additional command 'R some R commands' which let to execute R commands, e.g, 'R a<-rnorm(100)'. This can be used to define button's call...