search for: sahana

Displaying 15 results from an estimated 15 matches for "sahana".

2010 May 20
10
Libtheora
Hi all, I am Sahana. I am currently working on Libtheora for windows platform and very new to it. I am getting a lot of compiling errors. Since Libtheora depends on libogg and libvorbis i have added these as well to my workspace in VC++ 6. I have a doubt regarding the x86 and x86_vc folders described in the libtheora...
2013 Mar 22
3
trouble with data frame
...I get the following errors : "NULL" (if printed without as.numeric), and "numeric(0)" if printed with the as.numeric. Again, if I use the same command without the loop, it gives the correct answer. Would be grateful for your inputs and ideas on this matter. Thanks in advance, Sahana. [[alternative HTML version deleted]]
2010 Jun 04
0
(no subject)
Hi Sahana I must admit I'm not an expert in Theora. But the error message "Could not set keyframe interval to 64" might indicate that an attempt to set the keyframe frequency failed. Have a look at the keyframe_granule_shift attribute in the th_info struct. It says: The maximum distance betwe...
2013 Mar 19
4
Copying rows in data frames
Hi, I'm trying to copy the first row of one data frame to another. This is the statement I am using : df2[1,]<-df1[1,]; I have printed them out separately: df1[1,] = A C D E F But after copying: df2[1,] = 96 29 88 122 68 Why isn't it copying? They are both data frames, and "as.character" isn't working either. Thanks for your input :) [[alternative HTML version
2013 Feb 28
4
Iteration through a list in R
Hello :) I'm just starting out with R and would appreciate your help with a couple of problems I am running into. I have used Sys.glob to get a list of all filenames having a particular file extension (in my case, *.txt) I would now like to use this list in the following manner: I would like to use each filename from the list and open that file into a tab separated matrix and proceed. How can
2013 Mar 25
3
nested 'while' loops
Hi everyone, I'm using the following code to go over every element of a data frame (row wise). The problem I am facing is that the outer 'x' variable is not incrementing itself, thus, only one row of values is obtained, and the program does not proceed to the next row. This is the code: while(x<=coln) { while(y<=rown) { n<-as.numeric(df[[y]][x]);
2013 Mar 14
3
Equivalent of deal in R?
HI, I'm looking for a function that does the same as deal() in MATLAB, i,e, for an array x[1 2 3] [a,b,c]=x; such that a=1, b=2, c=3 Does R have any functions similar to this? [[alternative HTML version deleted]]
2010 Jun 03
0
(no subject)
Hi all, I am working on Libtheora. I have built the libtheora, libogg and libvorbis static libraries in vc++6. I'm testing the encoder for theora. I'm running tests on the encoder_example and i get the following errors in command prompt. C:\Users\Vista Business\Desktop\sahana\libtheora-1.1.1\theora\testbench\Debug>te stbench.exe -v 10 -o chk.ogv god.wav example.y4m-1 File god.wav is 16 bit 1 channel 11025 Hz RIFF WAV audio. File example.y4m-1 is 384x288 25.00 fps 420 video. Could not set keyframe interval to 64. Internal Theora library error. Appreciate all your hel...
2010 Jul 20
0
MMX version of Theora
...funcs 1>theora_static_d.lib(dct_decode.obj) : error LNK2001: unresolved external symbol _dsp_funcs 1>theora_static_d.lib(pp.obj) : error LNK2001: unresolved external symbol _dsp_funcs 1>encoderwin.exe : fatal error LNK1120: 2 unresolved externals 1>Build log was saved at "file://c:\Sahana\Project\libtheora-mmx-1.0alpha5\win32\experimental\encoderwin\Debug\BuildLog.htm" 1>encoderwin - 10 error(s), 9 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== Appreciate all your help. regards, sahana -------------- next part -------------- An HTM...
2013 Mar 06
2
Generating unique filenames.
Hi, I am trying to create unique filenames for my output text file. The idea is that I would like to append a string to ".zsc.txt" so that all my files are uniquely named but with a similar format. I have tried adding the string variable to ".zsc.txt" while creating the output file name, i.e. write.table function, is what I have tried using : write.table(x,
2013 Mar 26
2
NaNS Error Message
Hi, I'm using R to do a series of calculation and I have gotten several warnings that say "NaNS produced". Whatever I could read on line gives me an idea that this warning is produced when the number is use is a negative log or otherwise mathematically problematic. I'm getting this error while using factorial() and gamma () on strictly positive numbers (always greater than zero).
2013 Mar 12
2
Troubleshooting code
Hi everyone, I am having trouble understanding where I went wrong with my code. It seems to logically be "all there" but the output says otherwise. I know this is a bit long but I can't seem to find the errors so I would appreciate your help :) This is my program : files<-Sys.glob("*.rescount.txt");length<-length(files);* #selecting all files of a particular
2008 Jun 23
0
CentOS tools for public safety
...://tinyurl.com/3mk4ah http://tinyurl.com/4jm67 Once things die down (he was evacuated last week), he and I are planning on investigating various CentOS / nix public safety tools for future events like this. Any suggestions in this area would be greatly appreciate. I just recently found out at Sahana, and if there is anything else along those lines, I'd be very grateful.
2013 Mar 18
1
Problem with write.table
Hi everyone, I'm trying to create unique filenames and then write a data frame into these files. This is the code I am using. str1<-"fname" str2<-".ext.txt"; FILENAME<-paste0(str1,str2); write.table(df, file=FILENAME,col.names=FALSE,row.names=FALSE,quote=FALSE,sep="\t"); Ideally, a file called fname.ext.txt should be created, containing the data
2013 Mar 07
2
Copying a dataframe
Hi, I am trying to create a data frame using the dimensions of another data frame that I have input. This is the code I am using: tab is the data frame that is input. c.leng<-length(tab[,1]); r.leng<-length(tab[1,]); opdf<-data.frame(ncol=c.leng, nrow=r.leng); a<-1; while(a<=c.leng) { opdf[[1]][a]<-tab[[1]][a]; a<-a+1; } This is the error message I am getting: Error in