Displaying 5 results from an estimated 5 matches for "modet".
Did you mean:
mode
2013 Jan 16
2
special conference room
...aints:
- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator
- the moderator must be able to mute and unmute any caller at any time
- the moderator must be able to talk to all callers or to a specific caller.
- the modetator must be able to kick off any caller at any time...
Any hints on how to realize that are highly appreciated..
Thanx in advance,
yves
2004 Nov 26
0
Modes again
...the modes of a value set
# Based on Ross NELSONs code from 2004-11-16 (on R-help mailling list)
# create a table with the values sorted by frequency
sortvar <- sort(table(x))
# get the max frequency
maxfreq <- max(sortvar)
# find values with high frequency
modeTable <- which(sortvar == maxfreq)
# get the name (value) of the most frequent value
themoderesult <- names(modeTable)
# Report
return(themoderesult)
# data(CO2)
# modus(CO2$uptake)
# rm(CO2)
}
--
Lep pozdrav / With regards / Con respeto,
Gregor GORJA...
2004 Nov 26
0
Modes again
...the modes of a value set
# Based on Ross NELSONs code from 2004-11-16 (on R-help mailling list)
# create a table with the values sorted by frequency
sortvar <- sort(table(x))
# get the max frequency
maxfreq <- max(sortvar)
# find values with high frequency
modeTable <- which(sortvar == maxfreq)
# get the name (value) of the most frequent value
themoderesult <- names(modeTable)
# Report
return(themoderesult)
# data(CO2)
# modus(CO2$uptake)
# rm(CO2)
}
--
Lep pozdrav / With regards / Con respeto,
Gregor GORJA...
2011 Sep 02
0
No subject
...maximum number of users and set this up for each one
Exten =3D> 99,1,meetmeadmin(5555,M,1) let user 1 talk
Exten =3D> 199,1,meetmeadmin(5555,m,1) turn user 1 back off
- the moderator must be able to talk to all callers or to a specific =
caller.
Exten =3D> 901,1,chanspy(SIP/XXX,w)
- the modetator must be able to kick off any caller at any time...
Exten =3D> 299,1,meetmeadmin(5555,k,1) kick out user 1
Exten =3D> 666,1,meetmeadmin(5555,K) shut it down
=20
From: asterisk-users-bounces at lists.digium.com
[mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Don Kell...
2007 Mar 09
2
Duplicate rows of matrix
Hello my problem is the following:
I have a matrix A and a vector B which contains as many rows as A.
I need to build a matrix C which contains B[i]-times the row A[i,] and this for each line of A.
if for example A is
[1] [2]
[1] 8 9.4
[2] 4.2 1.1
and B is (3,1). Then C will be:
[1] [2]
[1] 8 9.4
[2] 8 9.4
[3] 8 9.4
[4] 4.2 1.1
I have some