|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1043 ] | DSP Research Group, Vienna University of Technology |
---|---|
Organisation name | DSP Research Group, Vienna University of Technology |
Short name or acronym | DSP Research Group, Vienna University of Technology |
Organisation type | Center |
Activity type | Speech technology |
Address | Gusshausstr. 25/389 |
Postal Code | A-1040 |
City | Vienna |
Country | Austria |
Phone | + +43 1 58801 38929 |
Fax | + +43 1 58801 38999 |
wmecklen_(on)_email.tuwien.ac.at | |
Organisation URL | http://www.nt.tuwien.ac.at/dspgroup/ |
Logo | Description |
![]() |
The DSP Research Group operates on the Speech and Audio Communication Section. Their research areas are: Adaptive Signal Processing and Optimal Filter Design, Time-Frequency Signal Processing, Micro and Signal Processor Applications, Nonlinear Signal Processing, Speech and Audio Communication. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |