search for: assig

Displaying 20 results from an estimated 63 matches for "assig".

Did you mean: assign
2011 Feb 13
3
[LLVMdev] conversion from 'const llvm::Value*' to 'llvm::Constant*'
Oh, I thought that after "codegening" cos(0) would get me double 1.0 (assigment is working for anything like: global a = 1/3 + 2 /3 for example) What would be the best way to make assigments involving functions, like global a = cos(0); without getting the assertion arising from InitVal = cast<Constant>(Init->Codegen()); ? I made some changes and now my code b...
2012 Apr 07
2
assigment operator question
Hello, using the <<- assignment operator I do not understand why the following does not work. l <<- list() l list() l$arg1 <<- "test" error in l$arg1 <<- "test" : Objekt 'l' not found ?"<<-" says: "The operators <<- and ->> cause a search to ma...
2015 Jan 23
0
Wine release 1.7.35
...chael Stefaniuc (40): strmbase: Remove an unused variable (PVS-Studio). winmm: Remove an unused variable (PVS-Studio). wintab32: Remove an always TRUE conditional expression (PVS-Studio). wrc: Remove some more always-true conditions. comctl32: Remove an unused variable assigment (PVS-Studio). comdlg32: Remove unused variable assigments (PVS-Studio). d3drm: Remove an unused assignment (PVS-Studio). d3dx9_36/tests: Actually test retrieve_device_state calls (PVS-Studio). devenum: Use the return value of __wine_register_resources (PVS-Studio)....
2011 Feb 13
0
[LLVMdev] conversion from 'const llvm::Value*' to 'llvm::Constant*'
Hi Anton, > Oh, I thought that after "codegening" cos(0) would get me double 1.0 > (assigment is working for anything like: global a = 1/3 + 2 /3 for > example) What would be the best way to make assigments involving > functions, like global a = cos(0); > without getting the assertion arising from InitVal = > cast<Constant>(Init->Codegen()); ? the problem is th...
2010 Nov 19
3
assigment
Hello R Users, I have vectors x <- c("a2","b7","c8") y1 <- c(1,2,3,2) y2 <- c(4,2,7,5,4,3,8) y3 <- c(1:10) and I want to assign values form vector y1 to a new variable which name comes from the 1st value of the vector x etc. How to do it using only vector x. As a result I should have: a2 <- y1 b7 <- y2 c8 <- y3 More general problem: I have 2 txt files. First is a one column C4 C6 F D D1 D2 D5 D6 .... Second is (...
2011 Feb 13
1
[LLVMdev] conversion from 'const llvm::Value*' to 'llvm::Constant*'
Hi Duncan and Reid, Thanks for your comments and suggestions. I was puzzled because assigning to a local variable in the tutorial example works. For example: var a = cos(1) in ( 2 * a ); emits declare double @cos(double) define double @0() { entry: ret double 0x3FF14A280FB5068C } and we get the right answer 1.08060461. On Sun, Feb 13, 2011 at 5:09 PM, Duncan Sands <baldrick...
2010 Sep 15
0
problem with gfs_controld
...<clusterfs device="/dev/gfs-webn/gfs-webn" force_unmount="0" fsid="14417" fstype="gfs" mountpoint="/web" name="web" options=""/> <clusterfs device="/dev/gfs-perfils/gfs-assig" force_unmount="0" fsid="21646" fstype="gfs" mountpoint="/assig" name="assig" options=""/> <smb name="FIBSMB1" workgroup="FIBSMB"/> <smb name="FIBSMB...
2005 Aug 10
5
how to write assignment form of function
Dear All, where can I find information about how to write an assigment form of a function? For curiosity I tried to write a different form of the levels()-function, since the original method for factor deletes all other attributes of a factor. Of course, the simple method would be to use instead of levels(x) <- newlevels, attr(x, 'levels') <- newleve...
2011 Feb 13
0
[LLVMdev] conversion from 'const llvm::Value*' to 'llvm::Constant*'
Hi Anton, > But there are still some details I must be missing. I'm getting an assertion > when I try the following assignment in my script: > global c = cos(1); > Assertion failed: isa<X>(Val) && "cast<Ty>() argument of incompatible type!", I think this is telling you that cos(1) is not a constant. Ciao, Duncan.
2011 Feb 13
2
[LLVMdev] conversion from 'const llvm::Value*' to 'llvm::Constant*'
Hi Duncan Many many thanks, it works now! But there are still some details I must be missing. I'm getting an assertion when I try the following assignment in my script: global c = cos(1); Assertion failed: isa<X>(Val) && "cast<Ty>() argument of incompatible type!", file c:/llvm-source-2.7/include/llvm/Support/Casting.h, line 200 However, running for example cos(1); global a = 0.5403023058681398; # cos(1)...
2006 Jul 26
2
newbie - HABTM confused...
I have a users table. I have a assignment table. and I have to log in to see my assignments. i can and I hasve a session id. I can make a new assignment and save my id in the user_id field of the assigment table. I want to share my assignments. so I can create a assignments_users table. this way I can have assignment 1 shared with us...
2008 Jul 29
4
Graphics function question
...9;, legend = c('Stable', 'Decline'), lty = 1, col = c(1,2)) >>>>> I would like to make this into a function. The only thing that changes is BReP3O1T. The problem is that sometimes this occurs as text (e.g. in ylab and main) sometimes after a $ (e.g. in the first two assigment statements), and sometimes it refers to the values (e.g. in ymin and ymax) Any help appreciated. Peter Peter L. Flom, PhD Brainscope, Inc. 212 263 7863 (MTW) 212 845 4485 (Th) 917 488 7176 (F) [[alternative HTML version deleted]]
2009 Mar 15
1
Add vorbis_dsp_init() ?
Hi, This mozilla bug report is a crash triggered by a Vorbis file with corrupt headers: https://bugzilla.mozilla.org/show_bug.cgi?id=481601 The patch to fix the crash adds a new vorbis_dsp_init() function to libvorbis, and calls that from fs_vorbis_init() in libfishsound: https://bug481601.bugzilla.mozilla.org/attachment.cgi?id=366150 The public function it adds is: void
2001 Aug 07
1
R 1.3.0 bug: after "y _ 10; x[[1]] _ y", assigning to "y[1]" modifies "x" (PR#1043)
After a list element has been assigned from a vector variable, assigments to elements of the original vector variable modify the copy stored in the list as well. Here's a transcript illustrating the problem: R : Copyright 2001, The R Development Core Team Version 1.3.0 (2001-06-22) [ . . . ] &...
2001 Apr 09
1
Multiple IP adresses on one interface and ping
Hello, I assign IP 172.25.0.1 and 172.25.1.1 on one interface of my router. This interface is connected to local LAN switch. If I ping from my box on lan with IP 172.25.0.22 I get icmp reply, but if I assig to my box IP 172.25.1.22 I don''t get icmp reply. My setup: ip addr add 172.25.0.1/24 brd + dev et...
2008 Mar 10
10
tutes on testing controllers
hello spec''ers, i''m in the hunt for guides on testing controllers with rspec, would you guys recommend any? thanks Oliver -- Oliver Azevedo Barnes oli.azevedo.barnes at gmail.com +55 11 9768 0193 http://www.linkedin.com/in/oliverbarnes http://workingwithrails.com/person/4704-oliver-barnes
2011 Jan 17
1
Replacing rows in a data frame
...0 0 0 0 ----- The output is not what I would have anticipated. Since seq(1,10,3) gives the vector [1 4 7 10], I expected rows 1, 4, 7 and 10 of the data.frame "testdat" to contain the same data, a 1 for variable 'a' and zeros for all other variables. I guess I assumed the assigment would proceed by rows, but it appears from the resulting output to be proceeding by columns. Can someone point out how I can modify this simple code so that the assignments proceed by rows? Thank you. Brant
2015 Aug 26
4
[PATCH 0/3] efi: A few warning fixes
...if I should merge those trivial warning fix into one commit. I can reformat it as requested. Those are a few warning fixes for the efi part. The code involved has mainly been introduced in recent commits. Sylvain Gault (3): efi: fix warnings about argument types efi: fix pointer-type mismatch assigment warning efi: fix warning about unused variable efi/main.c | 6 +++--- efi/pxe.c | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) -- 2.5.0
2005 Jan 31
1
naming list elements
All - Each time through a loop I create a new dataset, which I would like to append to a list object. Each item of the list should be the data matrix created in that step of the loop; I would like the NAME (or tag) of that list item to be assigned the value of a character string: I've tried something like this: running.list <- numeric(0) for(i in 1:num.files){ ..... running.list <- append(running.list, list(this.item.name=newdatamatrix)) } but the name of the item is always "this.item.name" instead of the CONTENTS...
2004 Sep 10
1
2/0, 2/2 3/0, 3/2, 5.1, wxyz
Curt Sampson wrote: > On Sun, 24 Aug 2003, smoerk wrote: > > >>there are different channel profiles for 5.1: >>L R C LFE Ls Rs (DVD) >>L R Ls Rs C LFE >>L C R Ls Rs LFE (Film) > > > I don't see why you need more than one of the above formats. It's not > like you can't decide to put the LFE channel into "input 3" or "input