Displaying 6 results from an estimated 6 matches for "_sqrt".
Did you mean:
sqrt
2012 Nov 22
1
Efficiently creating/defining new variables transformations
...te
a new variable that is its sqrt transform. Each piece of the equation below
works independently, but the left side definition fails on run. I also tried
creating the variable name first, but ended up with an object that
toString() did not fix. Better ideas?
Example 1
(paste0(emotions[[i]],"_sqrt"))<-sqrt(data[[emotions[i]]])
Example 2
newvar<-toString(paste0(emotions[[i]],"_sqrt"))
data$newvar<-sqrt(data[[emotions[i]]])
Example 3
newvar<-toString(paste0(emotions[[i]],"_sqrt"))
data$newvar[1]<-sqrt(data[[emotions[i]]])
--
View this message in con...
2013 Oct 22
2
[LLVMdev] How to use clang -intergrated-as to compile cross-(os/target) assembly file.
For example, I execute the following command sequences:
H:\CI\bld\compilers\musl\src\math\i386>type sqrt.s
#.globl _sqrt
.global sqrt
#.type sqrt, at function
#_sqrt:
sqrt: fldl 4(%esp)
fsqrt
fstsw %ax
sub $12,%esp
fld %st(0)
fstpt (%esp)
mov (%esp),%ecx
and $0x7ff,%ecx
cmp $0x400,%ecx
jnz 1f
and $0x200,%eax
sub $0x100,%eax...
2013 Oct 22
0
[LLVMdev] How to use clang -intergrated-as to compile cross-(os/target) assembly file.
...C preprocessor for you if you use the .S file suffix
(case matters).
On Tue, Oct 22, 2013 at 7:08 AM, 罗勇刚(Yonggang Luo) <luoyonggang at gmail.com>wrote:
> For example, I execute the following command sequences:
>
> H:\CI\bld\compilers\musl\src\math\i386>type sqrt.s
> #.globl _sqrt
> .global sqrt
> #.type sqrt, at function
> #_sqrt:
> sqrt: fldl 4(%esp)
> fsqrt
> fstsw %ax
> sub $12,%esp
> fld %st(0)
> fstpt (%esp)
> mov (%esp),%ecx
> and $0x7ff,%ecx
> cmp $0x400,%ecx
>...
2013 Oct 23
2
[LLVMdev] How to use clang -intergrated-as to compile cross-(os/target) assembly file.
...the .S file suffix
> (case matters).
>
> On Tue, Oct 22, 2013 at 7:08 AM, 罗勇刚(Yonggang Luo) <luoyonggang at gmail.com>wrote:
>
>> For example, I execute the following command sequences:
>>
>> H:\CI\bld\compilers\musl\src\math\i386>type sqrt.s
>> #.globl _sqrt
>> .global sqrt
>> #.type sqrt, at function
>> #_sqrt:
>> sqrt: fldl 4(%esp)
>> fsqrt
>> fstsw %ax
>> sub $12,%esp
>> fld %st(0)
>> fstpt (%esp)
>> mov (%esp),%ecx
>> and $0x7...
2007 Feb 02
1
Problem installing R-2.4.1 on AIX 5.3
.../cineca/prod/Bioinf/R-2.4.1/lib/libRlapack.so(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol _log was referenced
from module /cineca/prod/Bioinf/R-2.4.1/lib/libRlapack.so(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol _sqrt was referenced
from module /cineca/prod/Bioinf/R-2.4.1/lib/libRlapack.so(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol idamax was referenced
from module /cineca/prod/Bioinf/R-2.4.1/lib/libRlapack.so(), but a runtime definition
of the symbol w...
2013 Oct 22
0
[LLVMdev] LLVMdev Digest, Vol 112, Issue 59
...; Message-ID:
> <CAE2XoE-2780jMBL5kLtO8rXpfW_mrTkgjpix7WR+WH0-NGxivw at mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> For example, I execute the following command sequences:
>
> H:\CI\bld\compilers\musl\src\math\i386>type sqrt.s
> #.globl _sqrt
> .global sqrt
> #.type sqrt, at function
> #_sqrt:
> sqrt: fldl 4(%esp)
> fsqrt
> fstsw %ax
> sub $12,%esp
> fld %st(0)
> fstpt (%esp)
> mov (%esp),%ecx
> and $0x7ff,%ecx
> cmp $0x400,%ecx
> jnz...