source: trunk/IPs/systemC/processor/Morpheo/Common/include/Average.h @ 88

Last change on this file since 88 was 88, checked in by rosiere, 16 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 678 bytes
Line 
1#ifndef Morpheo_Average_h
2#define Morpheo_Average_h
3
4/*
5 * $Id: Average.h 88 2008-12-10 18:31:39Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11namespace morpheo              {
12
13  inline double average (double   val, double   val_max) {return ((val_max == 0)?0:(val/val_max));}
14  inline double average (uint32_t val, double   val_max) {return (average(static_cast<double>(val),                    val_max ));}
15  inline double average (double   val, uint32_t val_max) {return (average(                    val ,static_cast<double>(val_max)));}
16  inline double average (uint32_t val, uint32_t val_max) {return (average(static_cast<double>(val),static_cast<double>(val_max)));}
17 
18}; // end namespace morpheo             
19
20#endif
Note: See TracBrowser for help on using the repository browser.