Displaying 2 results from an estimated 2 matches for "framewok".
Did you mean:
framework
2008 Feb 22
1
Enquiry about Speex Encoder and decoder in C#
Hi,
How to implement the speex codec in C#?
I want to use it in ,Net Compact framewok 2.0 so how
can I use speeex for it?
Please help me in this matter.
Thanks And Regards.
Kaustubh Deshpande
5, 50, 500, 5000 - Store N number of mails in your inbox. Go to http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html
2005 Jan 26
3
Still avoiding loops
Dear all,
I have a matrix X with 47 lines and say 500 columns - values are in {0,1}.
I'd like to compare lines.
For that, I first did:
for (i in 1:(dim(X)[1]-1))
for (j in (i+1):dim(X)[1]) {
Y <- X[i,]+Y[j,]
etc.
but, since it takes a long time, I would prefer avoding loops;
for that, my first idea was to add this matrix:
X1=X[,rep(1:46,46:1)]
to this one:
res=NULL
for (i in