Geometry.Net - the online learning center
Home  - Computer - Dsp
e99.com Bookstore
  
Images 
Newsgroups
Page 7     121-140 of 140    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7 

         Dsp:     more books (100)
  1. Model based design of Adaptive Noise Cancellation: Using TI DSP TMS 320C6713 processor by Subramaniam Ganesan, 2009-09-22
  2. NEW KODAK MC3 COMBINES TI DSP/KODAK IMAGING SCIENCE.: An article from: Multimedia Publisher
  3. Using Commercial Off the Shelf (COTS) Digital Signal Processors (DSP) for Reliable Space Based Digital Signal Processing by Matthew J. Wukitch, 2001
  4. A Novel Compiler-friendly Micro-architecture for Rapid Development of High-performance and Low-power DSPS (Berichte Aus Der Electrotechnik) by Gordon Cichon, 2004-11-08
  5. Motorola delivers new DSP software tool kit. (digital signal processor): An article from: Software Industry Report
  6. Communication System Design Using DSP Algorithms by Steven A. Tretter, 1995
  7. LSI LOGIC AND AXYS DESIGN ANNOUNCE INTEGRATION OF ZSP DSP MODELS IN AXYS DESIGN'S MAXLIB COMPONENT LIBRARY.: An article from: EDP Weekly's IT Monitor
  8. Les DSP - Famille ADSP218x : Principes et applications by Michel Pinard, 2000-02-17
  9. An Optimization Framework for Auto-Modify Addressing Modes: Newly-Introduced Compiler Optimization Algorithms for Embedded DSP Processors with Auto-Increment and Auto-Decrement Addressing Modes by Chok Sheak Lau, 2009-05-24
  10. TEXAS INSTRUMENTS DSPS IMPROVE PROCESSING TIME AND HARD COPY IMAGE QUALITY FOR HP PRODUCTS.: An article from: Software Industry Report
  11. The 2007-2012 World Outlook for Digital Signal Processors (DSP) by Philip M. Parker, 2006-06-26
  12. Study of CDMA system and its hardware implementation: Design of CDMA System and Its Real Time Implementation Using TMS320C50 DSP Kit by Md. Jahangir Alam, 2009-07-24
  13. Learning Success (Prepared for Tennessee State University DSPS 0800) by Various, 2002
  14. Analogix Semiconductor signs Huawei-3Com as first customer; joint venture to use new DSP-Based SerDes ICs in next-generation network gear.(Partnership): An article from: China Telecom

121. Digital Signal Processing At Rice | Rice DSP
Site has the department s history, alumni, faculty, research and publications, software tools and dsp teaching tools.
http://www-dsp.rice.edu/
Skip to Main Content Search this site: Welcome to the Digital Signal Processing (DSP) group at Rice University. The DSP group has been actively teaching courses, conducting research, and publishing results since 1968. Justin Romberg named 2010 REA Outstanding Young Alumnus The Rice Engineering Alumni (REA) board of directors recently announced its 2010 awards for Outstanding Engineering Alumnus and Outstanding Young Engineering Alumnus (OYEA). Named OYEA was Justin Romberg, assistant professor in the school of electrical and computer engineering at the Georgia Institute of Technology, who earned his bachelor's degree in electrical engineering in 1997, master’s degree in electrical engineering in 1999 and a PhD in 2004, all from Rice University. From Fall 2003 until Fall 2006, he was a Postdoctoral Scholar in Applied and Computational Mathematics at the California Institute of Technology. He spent the Summer of 2000 as a researcher at Xerox PARC, the Fall of 2003 as a visitor at the Laboratoire Jacques-Louis Lions in Paris, and the Fall of 2004 as a Fellow at UCLA's Institute for Pure and Applied Mathematics. In the Fall of 2006, he joined the ECE faculty as a member of the Center for Signal and Image Processing. Jarvis Haupt Appointed Tenure-Track Assistant Professor at University of Minnesota Jarvis Haupt , a Rice DSP post doctoral research associate, has accepted an assistant professorship at the University of Minnesota. Jarvis' research focuses on

122. NI LabVIEW DSP Module
The National Instruments LabVIEW dsp Module is a fullfeatured graphical dsp design tool based on the LabVIEW graphical programming environment that you can
http://www.ni.com/dsp/
Cart Help
  • NI LabVIEW
    • LabVIEW Development Systems LabVIEW Mobile Module ... LabVIEW for Embedded Applications
      NI LabVIEW DSP Module
      The National Instruments LabVIEW DSP Module is a full-featured graphical DSP design tool based on the LabVIEW graphical programming environment that you can use to create real-time embedded applications. Features include:
      • Direct access to digital and analog I/O lines of DSP target Complete support for Express VIs for faster code development Ability to switch between supported DSP targets without rewriting code Seamless integration of digital filters
      Featured Resources
      Learn LabVIEW DSP in Three Hours
      Follow these easy, fun exercises to learn how you can use the LabVIEW DSP Module for teaching signal processing concepts effectively.
      Penn State University Curriculum
      Download curriculum for the Penn State University Introduction to Digital Music class taught by Professor David Salvia using the LabVIEW DSP Module and NI SPEEDY-33.
      The Infinity Project
      Introduce engineering concepts with The Infinity Project curriculum and kit that incorporates the LabVIEW DSP Module and NI SPEEDY-33.
      LabVIEW Digital Filter Design Toolkit
      Learn more about how to interactively create digital filters you can directly implement using the LabVIEW DSP Module.

123. Data Acquisition (DAQ) - Microstar Laboratories
Processor boards with onboard dsp commands for PC-based, real-time data acquisition, digital signal processing and control systems.
http://www.mstarlabs.com/
Data Acquisition System
Data Acquisition Systems
USB and PCI
Use Data Acquisition Processor systems for
  • High sampling rates High channel capacity High measurement quality Real-time processing
Add an Isolated Signal Interface
Explore Applications Features About Us Company ... The Next Step
Products Product Overview New Products Data Acquisition Boards ... System Packaging Information Contact Us Documents Catalogs Support ... For the Press Technology Data Acquisition Control DSP Integrated Systems ... Linux
New Products
xDAP 7400
SMS I64
Signal Interface Modules
Popular Products
In your real-time pc-based data acquisition and control systems , use intelligent Data Acquisition Processor DAQ boards.
DAP 5400a : data acquisition boards optimized for simultaneous sampling at extreme speeds DAP 5200a : data acquisition boards with high-speed onboard processing for real-time data acquisition and control iDSC 1816 : a specialized data acquisition card for spectral analysis applications - including shock and vibration - that acquires signals through built-in analog and DSP anti-aliasing filters Microstar Laboratories, Inc.

124. MATLAB FOR DSP
Dec 31, 1997 Here a few programming tips that should help you get started writing MATLAB programs for dsp. For more basic information about Matlab,
http://www.eng.auburn.edu/~reevesj/Classes/DSP/DSP.html
MATLAB FOR DSP
Here a few programming tips that should help you get started writing MATLAB programs for DSP. For more basic information about Matlab, refer to Matlab Primer Matlab is an interpreted language. This means that the source code is not compiled but is interpreted on the fly. You can use Matlab interactively by typing commands at the prompt. You can also write Matlab functions AVOID FOR LOOPS You may be tempted to write Matlab code the way you would write a program in Fortran or C. Although you can get by with this, don't do it. Because Matlab is an interpreted language, it must interpret every line in a for loop each time it goes through the loop. This makes Matlab painfully slow at doing loops. For example, to generate a sine wave you can write:
for i=0:999, x(i+1) = sin(2*pi*i/100);
However, this is significantly slower than
x = sin(2*pi*[0:999]/100);
In general, you should try to think of ways to let Matlab process whole vectors at one time rather than using loops. Most Matlab functions will operate on a vector as easily as on a scalar. With some experience, you will find that most (but not all) for loops can be eliminated. Here is a function that generates a triangular waveform in one line: function x = tri(T,sT,Ns) % TRI Generate samples of a triangular waveform with period T seconds, % sampling frequency sT samples/second, and Ns samples. x=2*abs(round([0:Ns-1]/sT/T)-[0:Ns-1]/sT/T);

125. CDA Systems Ltd. - CUSTOM ENGINEERED ELECTRONIC DESIGN
Provides custom designed industrial dsp hardware/software solutions. Support for DeviceNet, Ethernet and Profibus. Based in Canada.
http://www.cdasys.com
MOTOR SPEED MONITORING INDUSTRIAL SIGNAL PROCESSING SOLUTIONS CDA's DC motor speed monitoring modules can accurately track commutated/brushless DC motor speed based on the motor's supply current. Allowing the testing of embedded motors. No line of sight, physical contact required.... CDA Systems Ltd. offers a range of industrial modules. Our XX-DSP56 modules are network-ready, high precision industrially rugged devices. Direct connection to DeviceNet, Ethernet, and Profibus networks. DESIGN SERVICES CDA Systems Ltd. also offers contract design and development services, with specific expertise in DSP and microprocessor based products. CDA is involved in all aspects of product development from concept, hardware design, prototype development, low-level driver, and application software development. CDA has been responsible for hundreds of successful products in industrial production/test equipment, audiology, digital audio, automotive electronics and data acquisition. DESIGN ALLIANCE MEMBER
NEWS - coming soon Home About Us Services Products ... Contact Us Flash Required

126. Encore Software Ltd.
Find out about technological solutions in dsp based modems and speech codecs, and embedded systems. Based in Karnataka, India.
http://www.ncoretech.com/

127. Ikena
Unrivaled Video Enhancement. Motiondsp specializes in cuttingedge video enhancement and image processing software, providing unrivaled performance in terms
http://www.motiondsp.com/
  • Home Products Email: Password: Forgot password? Log in
    Unrivaled Video Enhancement
    MotionDSP specializes in cutting-edge video enhancement and image processing software, providing unrivaled performance in terms of quality, speed, and ease of use.
    Ikena: Law Enforcement and Forensics
    Post-processing, super-resolution video enhancement for law enfocement and forensics labs, with powerful tools for capturing, enhancing and presenting court-admissible evidence.
    Also available: Ikena GPU, featuring graphics-processor-accelerated video processing.
    Ikena ISR: Live Video Processing
    Versatile workstation and laptop configurations provide real-time super-resolution motion imagery processing of live video for better intelligence and situational awareness.
    Perfect for analysis of live feeds from unmanned aerial vehicles (UAVs).
    News Ticker:
    • MotionDSP Twitter: MotionDSP certifies Ikena ISR on GE's MAGIC1 NVIDIA GPU-powered Rugged System for UAVs/ISR. Showing at GEOINT2010 http://bit.ly/aUiawz MotionDSP Twitter: Air Force Blue Dragon project: fusing signals intelligence with wide area video surveillance. #AviationWeek http://bit.ly/dqYod8

128. Citilindia.com
Provides software solutions and services for dsp, VOIP, speech technology, image processing and embedded systems, digital imaging, digital video and communication, compression techniques , security networking, and parallel processing. Company offices in the US and India.
http://www.citilindia.com

129. Spectrum Signal Processing By Vecima – COTS And Custom Designed Solutions To S
Provides dsp hardware and software solutions, specialising in Software Defined Radios (SDR). Based in Canada.
http://www.spectrumsignal.com/

130. RTC - Direct Support Workforce Development
The RTC dsp workforce development program, its staff and partners are working vigorously to find creative solutions to the workforce challenges of
http://rtc.umn.edu/dsp/
skip to main content Search the RTC:
Direct Support Workforce Development
One of the biggest challenges to providing community supports for people with developmental disabilities is the ability to find, keep and retain qualified direct support professionals (DSPs). The Research and Training Center on Community Living at the University of Minnesota maintains a comprehensive research, training and technical assistance program in the area of direct support workforce development. The RTC DSP workforce development program, its staff and partners are working vigorously to find creative solutions to the workforce challenges of recruitment, retention and training.

Questions/Feedback about this web site? E-mail the webmaster at: weste050@umn.edu
The Research and Training Center on Community Living (RTC) operates with primary funding from the National Institute on Disability and Rehabilitation Research (NIDRR) . It also receives funding from the Administration on Developmental Disabilities (ADD) and other federal agencies. The RTC is part of the

131. Pentek, Inc. - Home
Comprehensive source for off-the-shelf digital signal processing (dsp), software radio and data acquisition system design products.
http://www.pentek.com/
Sign-up for VPX updates
Site Search Product Selector Need Assistance?
SITE MAP

Request
...
Literature

Pentek, an ISO 9001:2008 certified company, designs COTS digital signal processing (DSP), software radio, FPGA and data acquisition commercial and conduction-cooled boards, systems and recording instruments for VME, cPCI, PCI, PCIe, PMC, VXS, VPX and XMC. Virtex-6 FPGA XMC with Four Channel 200 MHz, 16-bit A/Ds
Model 71660
  • Supports Xilinx Virtex-6 LXT and SXT FPGAs Four 200 MHz 16-bit A/Ds Up to 2 GB DDR3 SDRAM or 32 MB QDRII+ SRAM Sample clock synchronization to an external system reference LVPECL clock/sync bus for multimodule synchronization Sign-up for Virtex FPGA updates

Model 2721
PIPELINE NEWSLETTER Radar Topics, Applications and Pentek Products FEATURED HANDBOOK Putting FPGAs to Work for Software Radio Handbook, Fifth Edition ... Request a Product Demonstration Editor's Choice Award by Military Embedded Systems Model 7191 Programmable Multifrequency Clock Synthesizer - PMC Simultaneous synthesis of up to five different clocks Eight SMC clock outputs All clocks are phase-locked to input reference signal info@pentek.com

132. FPGA And DSP Modules And Systems :: Hunt Engineering, Real-Time DSP Supplier
Provides FPGA and dsp hardware with TMS320C6000 processors and I/O interfaces. Based in the UK.
http://www.hunteng.co.uk
Home Japanese Products
About Us
... Customers Search the Site Join our email list for latest news!
/**************************************************** * DOM Image rollover v3.0: By Chris Poole http://chrispoole.com * Script featured on http://www.dynamicdrive.com * Keep this notice intact to use it :-) ****************************************************/
FPGA and DSP Hardware for Programmable Real-Time Systems from Hunt Engineering
Configure the programmable system you need for your application using our COTS modules! Build your custom system using a single module or any combination of modules.
First, select the modules you need:
Choose from HERON-FPGA modules with a Virtex Virtex -II Pro or Virtex -II - all programmable by you.
What about a programmable processor ? Choose one of the modules with a 'C6203 DSP or embedded PowerPC (your chosen FPGA module may already have one)
Need external memory digital or analogue I/O ? Then choose the module or combination of modules that have the best mix for your needs Next, select the module carrier that fits your needs:

133. DSP Research Groups
Integrated dsp Environments and Architectures Laboratory at Boston University for dsp and Telecommunications Research Group, Queen s University Belfast
http://spib.rice.edu/SPS/SPS_rsrch.html
Major DSP Research groups around the world
Canada
University of Waterloo Centre for Wireless Communications
Micronet MDSP Research Group (University of Calgary, Canada) focused on image processing.
Signal Processing and Multimedia Group , University of British Columbia
United States
Rice Digital Signal Processing Group
CIPR , Center for Image Processing Research at Rensselaer Polytechnic Institute.
Integrated DSP Environments and Architectures Laboratory at Boston University for advanced DSP algorithms and applications
CDSP Communications and Digital Signal Processing Center, Northeastern University
Center for Electronic Imaging Systems at the University of Rochester
Signal processing at Princeton University
Digital Signal Processing Laboratory at the University of Maryland, College Park
University of Delaware Signal Processing and Communications Group
Center for Signal and Image Processing at the Georgia Institute of Technology
Institute for Signal and Information Processing , Mississippi State University.
Center for Vision and Image Sciences at the University of Texas at Austin
Information Systems research at Michigan Tech Signal Processing and Communications Research Group at Michigan State University
ERIM (Environmental Research Institute of Michigan) for image and signal processing
SPinCOM : Signal Processing in Communications at the University of Minnesota

134. Enabling Technology For Real-Time Applications: DSP, IEEE1394 FireWire, Ethernet
Provides dsp, Imaging, FPGA, IEEE 1394 FireWire and Ethernet Solutions for OEM and Industrial Applications.
http://www.traquair.com
Hardware Products micro-line Embedded DSP / FPGA Boards
ultra-compact Multi-chip Modules

Ready-to-use IEEE 1394 FireWire, programmable TMS320C5000 DSP and FPGA in a tiny 30x36mm package. Programming of DSP and FPGA not required for FireWire connectivity applications. Ethernet
10/100Base-T Ethernet enabled embedded real-time solutions
using micro-line TMS320C6000 based embedded DSP/FPGA boards IEEE 1394a FireWire
FireWire connectivity using micro-line embedded DSP boards
and ultra-compact multi-chip modules. USB
USB enabled embedded real-time solutions using micro-line
TMS320C6000 based embedded DSP/FPGA boards Non-Volatile Embedded Data Storage
On-board FLASH, as well as FireWire enabled hard drive and compactFLASH storage options for micro-line embedded DSP/FPGA boards. Search Home Site Map News ... Ethernet Traquair reserves the right to change specifications without notice.
webmaster
This site is optimized for viewing with Internet Explorer 6.0+

135. GO DSP/Texas Instruments Web Site Integration
As part of our commitment to providing you with the most comprehensive and upto -date product information we have integrated the GO dsp website into the
http://www.go-dsp.com/
You have reached this page in an attempt to reference the GO DSP web site. As part of our commitment to providing you with the most comprehensive and up-to-date product information we have integrated the GO DSP website into the Texas Instruments website. For future information regarding:
Code Composer Studio visit TI's new DSP Village website For Product registration contact Lee Marketing Service at texasinstruments@leemarketing.com or (972) 293-5050. After 1 min this page will redirect itself to the DSP Village website
Products
Applications Support ... Terms of Use

136. BDTI — Benchmarking, Technical Consulting, And Software Development For Embedd
BDT offers consulting services and in-depth user s guides analyzing Digital Signal Processing (dsp) technology.
http://www.bdti.com/
Insight, Analysis, and Advice
on Embedded Processing Technology

137. Algotron Ltd
Provides modem data pump and telecom related dsp software modules. Based in the UK.
http://www.algotron.com
Algotron TI DSP Software For Telecoms A TI DSP Third Party Network Member Home Modem Data Pumps Telephony Audio ... Contact Us At AlgoTron, we generate high quality DSP microprocessor software. We specialise in modem data pump and telecoms-related applications. Our target customers are manufacturers who wish to buy in standard DSP code modules or require bespoke code designs. The software is written for operation on two Texas Instruments TMS320 DSP microprocessor series: the ‘C54x’/C55x range and the 'C2xx/ 'C5x range. The software is in assembler and is highly efficient in terms of DSP processing power, data-, and program-memory requirements. Each module is single-DSP based and, apart from DSP resource needs, is platform-independent. The source code is thoroughly commented for easy maintenance by customers. Signal performance of each module has been extensively optimised. For example, the modem software has been carefully crafted to give excellent error rate / SNR figures over both flat and poor channels. The software modules can all be purchased under license, and come supplied with user's guides. Integration support can be provided. We can also do general DSP consultancy and contract work, and are particularly adept in designing and implementing from scratch.

138. SUPPLEMENTAL REGISTRATION FOR THE DIVERSITY IMMIGRANT VISA PROGRAM
File Format PDF/Adobe Acrobat
http://www.state.gov/documents/organization/80148.pdf

139. Welcome To Freescale Semiconductor
Information on Digital Signal Processors from Freescale Semiconductor (Motorola).
http://www.freescale.com/

140. Adaptyv
Includes articles, downloads, and products concerning the design of digital signal processing systems.
http://www.adaptyv.com/

Page 7     121-140 of 140    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7 

free hit counter