Displaying 20 results from an estimated 468 matches for "cls".
Did you mean:
cl
2013 Apr 10
2
non linear equation
...2882655781,
88.4521557193262, 56.6404686159112, 27.0374477259404, 34.3347291080268,
18.3226992991316, 15.2196612445747, 5.31600719692165, 16.7015717397302,
16.3923389973684, 24.2702542054496, 21.247247993673, 18.3070717608672,
2.8811892177331, 3.18018869564679, 8.74204132937479, 7.11596966047229
), cls = c(0.25, 0.5, 0.75, 1, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5,
5, 5.5, 6, 6.5, 7, 7.5, 8, 8.5, 9, 9.5, 10)), .Names = c("proc",
"cls"), row.names = c("0.25", "0.5", "0.75", "1", "11", "1.5",
"2", "2.5", &qu...
2013 Feb 10
2
exponential model in R
Dear R users,
I don't know how to compute an exponential model like this:
proc=a*exp(b*cls), or proc=a*exp(b*cls)+c*exp(d*cls). Please help me to
solve this problem!
Thank you!
My data is:
row.names proc cls
1 0.5 452.616206 0.5
2 1 255.864021 1.0
3 1.5 150.885316 1.5
4 2 86.289600 2.0
5 2.5 56.321559 2.5
6 3 39.504444 3.0
7 3.5 25.570308 3.5
8 4 5.382726 4.0
--
---
Catalin-Constant...
2020 Jan 08
2
add jsslogo.jpg to R sources?
Hi R-core, I was wondering if somebody could please add jsslogo.jpg to the
R sources? (as I reported yesterday in this bug)
https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17687
R already includes jss.cls which is the document class file for Journal of
Statistical Software. Actually, for the jss.cls file to be useful, it also
requires jsslogo.jpg in order to compile JSS articles without error.
This is an issue for me because I am writing a JSS paper that includes
figures created using tikzDevice, w...
2010 Apr 08
1
incomplete final line found by readTableHeader
Hi
I am trying this
> x <- read.table("/home/kenji/1245/GDS1_2grps_.cls", header = F, skip = 2)
> x <- read.table("/home/kenji/1246/MYCset.cls", header = F, skip = 2)
Warning message:
In read.table("/home/kenji/1246/MYCset.cls", header = F, skip = 2) :
incomplete final line found by readTableHeader on
'/home/kenji/1246/MYCset.cls...
2007 Feb 06
2
abbreviate dataframe for Sweave output
I wanted to print the first and last rows of some dataframes in Sweave
using dots in columns to separate the two parts. Head and tail almost
work, but I have problems with factors and row names.
z<-data.frame(id=letters[1:26], x=sample(1:26,26))
rbind(head(z,3), ".", tail(z,1))
id x
1 a 18
2 b 8
3 c 14
4 <NA> .
26 z 10
Warning message:
invalid
2020 Jan 08
1
add jsslogo.jpg to R sources?
...tdhock5 at gmail.com> wrote:
>>
>> Hi R-core, I was wondering if somebody could please add jsslogo.jpg to the
>> R sources? (as I reported yesterday in this bug)
>>
>> https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17687
>>
>> R already includes jss.cls which is the document class file for Journal of
>> Statistical Software. Actually, for the jss.cls file to be useful, it also
>> requires jsslogo.jpg in order to compile JSS articles without error.
>>
>> This is an issue for me because I am writing a JSS paper that includes...
2018 Jun 19
2
Naming clash: -DCLS=n and CLS in code
While building llvm & clang & libs by giving some optimization options
to the building compiler, the following error happened:
I think it is related to the passed -DCLS=64, because in file
clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp:6411 an enum member
has the same name (CLS), so it does a macro-substitution with the passed value
of CLS, ie. with 64, but which of course then breakes the syntax...
I think such "reserved" names like CLS that can be...
2013 Apr 23
2
SSbiexp
Hello all!
I have a problem to use a biexponential regression model:
I use this code:
n3<-nls(proc~SSbiexp(cls,a,b,c,d),data=bline) and this is the error message:
Error in nls(y ~ cbind(exp(-exp(lrc1) * x), exp(-exp(lrc2) * x)), data =
xy, :
singular gradient
My data is like this:
structure(list(proc = c(387.177462830167, 508.090511433077,
321.836817656365,
151.226805860727, 150.885315536942, 86.28959...
2014 Mar 21
3
[LLVMdev] lli crashes when running cpp programs
Hi all,
I need to run c++ prgrams using lli.
However, I find lli cannot handle the alias instruction correctly. Following is
an example:
------------ example.cc
-------------
#include
<iostream>
using namespace std;
class
cls {
public:
cls();
~cls();
};
cls::cls() {
cout << "constructor" <<
endl;
};
cls::~cls() {
cout << "destructor" <<
endl;
}
int main(int argc, char
*argv[])
{
cls *A = new
cls();
delete A;
return
0;
}
----------- end of fi...
2013 Oct 21
3
how to pass the value to custom function?
...nux=>["Slackware", "RedHat", "Caldera"],
> :mac=>["Jaguar", "Lion", "Tiger", "Kodiak"],
> :win=>["Chicago", "Daytona", "Longhorn"]}
>
> cls = args[0]
>
> if oss.key?(cls)
> return oss[cls][0]
> else
> return ''undefined''
> end
> end
> end
>
and then in my module''s init.pp, I have this:
$h= am_running_oss($::am_os_type)
>...
2012 Mar 31
3
clear console
hi,
I use R - 2.15(32bit), and want to make a code to clear a console.
Actually, I used to run following code to do that but after update the
version of R from 2.14 to 2.15, it doesn't work.
cls <- function (t) {
require(RDCOMClient)
wsh <- COMCreate("Wscript.Shell")
wsh$SendKeys("\f")
invisible(wsh)
}
cls()
or
cls <- function() {
require(rcom)
wsh <-comCreateObject("Wscript.Shell")
comInvoke(wsh, "Sen...
2005 Dec 16
3
Help with data.frame and lapply
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello:
I'm having problems with this line of code:
X.lm <- lapply(names(d), function(x) lm(d["cls"] ~ d[x], data=d))
d[x] is what is giving trouble here, but I don't know exactly how to
solve it. What I'm trying to do is to create a linear model from each
column of the data frame 'd' to apply ANOVA later.
Thanks very much in advance. Regards:
Juan Daniel L??pez Serna...
2018 Jun 19
2
Naming clash: -DCLS=n and CLS in code
Tim Northover via llvm-dev wrote on 06/19/2018 07:55 PM:
> On Tue, 19 Jun 2018 at 18:22, U.Mutlu via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
>> I think such "reserved" names like CLS that can be passed to the compiler(s),
>> should be avoided as identifiers for naming variables, constants, enum
>> members, macros etc.
>
> Why are you passing that argument in the first place? The compiler
> completely ignores it.
CLS stands for cacheline size. It is an impo...
2017 Sep 28
3
[RFC] Adding a cls intrinsic for AArch64
I'm not entirely sure whether this is worth an RFC, but, just in case.
On bugzilla Eli pointed out we currently match a specific sequence of
instructions to cls (
https://reviews.llvm.org/rL206079), and given how fragile this is, it
could be better to just introduce an intrinsic for it (and presumably,
teach peephole optimizations to lower a sequence to that intrinsic).
I wonder what folks are OK with the new intrinsic.
If there are no strong objections, I...
2018 Jun 19
6
Naming clash: -DCLS=n and CLS in code
Tim Northover wrote on 06/19/2018 08:54 PM:
>>> Why are you passing that argument in the first place? The compiler
>>> completely ignores it.
>>
>> CLS stands for cacheline size. It is an important parameter
>> for optimization of the generated code, at least with gcc/g++.
>> -DCLS=n should have the same importance like for example -DNDEBUG.
>
> The GCC source doesn't appear to mention it, and neither does any
> documentat...
2018 Aug 20
0
Can't connect after Ubuntu 18.04.1 Upgrade???
...spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
passwd program = /usr/bin/passwd %u
server role = standalone server
server string = %h server (Samba, Ubuntu)
syslog = 0
unix password sync = Yes
usershare allow guests = Yes
wins support = Yes
workgroup = CLS
idmap config * : backend = tdb
[printers]
browseable = No
comment = All Printers
create mask = 0700
path = /var/spool/samba
printable = Yes
[print$]
comment = Printer Drivers
path = /var/lib/samba/printers
[gc9data1]
comment = GreenCare Data Files
create mask = 0775
directory ma...
2007 Mar 11
1
Problem in Mounting Exaclibur 4GB USB Pen Drive on Centos4.0
...00:00/0000:00:1d.7/usb1/1-1/1-1:1.0/host2/target2:0:0/2:0:0:0
sg3-utils are also installed on the system but sg_scan -i returns nothing
Output of /proc/bus/usb/devices
T: Bus=04 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 2
B: Alloc= 0/900 us ( 0%), #Int= 0, #Iso= 0
D: Ver= 1.10 Cls=09(hub ) Sub=00 Prot=00 MxPS= 8 #Cfgs= 1
P: Vendor=0000 ProdID=0000 Rev= 2.06
S: Manufacturer=Linux 2.6.9-5.0.3.EL uhci_hcd
S: Product=UHCI Host Controller
S: SerialNumber=0000:00:1d.2
C:* #Ifs= 1 Cfg#= 1 Atr=c0 MxPwr= 0mA
I: If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
E:...
2009 May 03
2
clear screen?
I?ve been using this routine for several years. I?m sorry, I don?t remember
where I got it. It works as it should, viz. it blanks the R console. But
it requires package rcom and now that requires rscproxy.
cls <-
function ()
{
require(rcom)
wsh <- comCreateObject("Wscript.Shell")
comInvoke(wsh, "SendKeys", "\f")
invisible(wsh)
}
> cls()
Loading required package: rcom
Loading required package: rscproxy
This seems like overkill to me just to blank t...
2020 Jan 08
0
add jsslogo.jpg to R sources?
...at 19:21, Toby Hocking <tdhock5 at gmail.com> wrote:
>
> Hi R-core, I was wondering if somebody could please add jsslogo.jpg to the
> R sources? (as I reported yesterday in this bug)
>
> https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17687
>
> R already includes jss.cls which is the document class file for Journal of
> Statistical Software. Actually, for the jss.cls file to be useful, it also
> requires jsslogo.jpg in order to compile JSS articles without error.
>
> This is an issue for me because I am writing a JSS paper that includes
> figures cre...
2006 Jan 16
0
USB Problem
...a week when
this occurs again.
I am running an up to date Centos 4.2 albeit with the 2.6.9-27 SMP
kernel. Here are the devices on the USB:
# cat /proc/bus/usb/devices
T: Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 4
B: Alloc= 27/900 us ( 3%), #Int= 2, #Iso= 0
D: Ver= 1.10 Cls=09(hub ) Sub=00 Prot=00 MxPS= 8 #Cfgs= 1
P: Vendor=0000 ProdID=0000 Rev= 2.06
S: Manufacturer=Linux 2.6.9-27.ELsmp ohci_hcd
S: Product=OHCI Host Controller
S: SerialNumber=0000:02:00.0
C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
I: If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
E:...