Changeset 861
- Timestamp:
- 03/01/06 14:00:32 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/MathUtils.h
r829 r861 42 42 // Hanning smoothing 43 43 template <class T> 44 /** 45 * Hanning smooth a masked vector 46 * @param out the smoothed vector 47 * @param outmask the smoothed mask 48 * @param in the input vector 49 * @param mask the input mask 50 * @param relaxed a weighting scheme 51 * @param ignoreOther drop every second channel (NYI) 52 */ 44 53 void hanning(casa::Vector<T>& out, casa::Vector<casa::Bool>& outmask, 45 54 const casa::Vector<T>& in, const casa::Vector<casa::Bool>& mask, … … 55 64 const casa::Vector<casa::Bool>& mask); 56 65 66 /** 67 * Convert a std::vector of std::string 68 * to a casa::Vector casa::String 69 * @param in 70 * @return 71 */ 57 72 std::vector<std::string> tovectorstring(const casa::Vector<casa::String>& in); 58 73 74 /** 75 * Convert a casa::Vector of casa::String 76 * to a stl std::vector of stl std::string 77 * @param in 78 * @return 79 */ 59 80 casa::Vector<casa::String> toVectorString(const std::vector<std::string>& in); 60 81
Note:
See TracChangeset
for help on using the changeset viewer.